An open API service indexing awesome lists of open source software.

https://github.com/kunal768/circle-nn

A neural network that draws circles , learned from Bresenhams algorithm
https://github.com/kunal768/circle-nn

computer-graphics draws-circles nerual-network neuaral sklearn

Last synced: 2 months ago
JSON representation

A neural network that draws circles , learned from Bresenhams algorithm

Awesome Lists containing this project

README

        

# Circle-NN

A neural network that draws circles , learned from Bresenhams Circle drawing algorithm

## Setup
```shell
git clone https://github.com/kunal768/Circle-NN.git

cp tests/model_test.py model_test.py

python3 model_test.py

```

## Result
### Comparison with plot of Bresenhams Algorithm
Xc = 5 , Yc = 5 , Radius = 70

Neural Network result
![alt text](https://github.com/kunal768/Circle-NN/blob/master/results/nn.png "Nn-result")

Bresenhams Algorithm Result
![alt text]( https://github.com/kunal768/Circle-NN/blob/master/results/bres.png "bres-result")