|
| 1 | + |
| 2 | +# Neon Effect Filter |
| 3 | + |
| 4 | +Converting an image into an neon effect filtered image using some of the python libraries. |
| 5 | + |
| 6 | +## Libraries used |
| 7 | +Firstly import the following python libraries |
| 8 | +* OpenCv |
| 9 | +* Os |
| 10 | +* Matplotlib |
| 11 | +* Numpy |
| 12 | + |
| 13 | +Taking path of the image/Real image as input using os and finally reading it using cv2 |
| 14 | + |
| 15 | +## Detailed explanation of the method used |
| 16 | + |
| 17 | +* Imported the required libraries ( Numpy, Matplotlib, OpenCv, Os) |
| 18 | +* Read the input path of the image using Cv2 library |
| 19 | +* Used Bilateral Filter |
| 20 | +* Followed by Median Blur |
| 21 | +* Followed by Adaptive Threshold |
| 22 | +* Followed by Bitwise "and" between original image and edge image |
| 23 | +* And at last used Bitwise "xor" between orginal and output of the above "bitwise and image" |
| 24 | +* Finally converted the image into "Neon Effect Filtered" image |
| 25 | + |
| 26 | +## Original Image |
| 27 | +<img src="Image/image_.jpg" height="500px"> |
| 28 | + |
| 29 | +## Neon Effect Filtered Image |
| 30 | +<img src="Image/(Neon Effect Filter)image_.jpg" height="500px"> |
| 31 | + |
| 32 | +## Author(s) |
| 33 | +[Akriti](https://github.com/A-kriti) |
0 commit comments