├── Adaptive+Gaussian Thresholding ├── AG.jpg ├── AM.jpg ├── Global.jpg ├── adaptive_thr.py └── page.jpg ├── Basic Transformations ├── Translation.jpg ├── basic_transform.py └── calvinHobbes.jpeg ├── Box Filter ├── boxfil.png ├── filter.py ├── orig.png └── panda1.jpg ├── Capture Video Frames └── capt_video_frame.py ├── Contours-OpenCV ├── CannyFish.jpg ├── Contours.jpg ├── LargestContour.jpg ├── bubblingFish.jpg └── contour.py ├── Digital_Image_Processing,_4th Edition-Rafael Gonzalez.pdf ├── Discrete Fourier Transformation ├── DFT.png ├── Untitled.png ├── dft.py └── idft.jpg ├── Est. Transformation ├── 1.jpg ├── image.jpg └── piecewise.py ├── Fitting Polygons ├── Contours.jpg ├── Threshold.jpg ├── Triangles.jpg ├── polygon.py └── polygons.jpg ├── GaussianFilter+Kernels ├── convolution.py └── panda.jpg ├── Grabcut ├── Screenshot from 2020-08-14 23-16-57.png ├── cut_messi.jpg ├── grabcut.py └── messi.jpg ├── Histogram Equalisation ├── Equalized Image.png ├── equal-hist.png ├── hist.png ├── hist.py └── lowContrast.png ├── Hough Lines ├── canny.jpg ├── dilate.jpg ├── erode.jpg ├── hough.jpg ├── sudoku.jpg └── sudoku.py ├── Image Averaging └── average.py ├── Image Temperature ├── hist.png ├── warm.py └── warmed.jpg ├── Interpolation-Inverse Mapping ├── NearestNeighbour.jpg ├── interpolation.py ├── original.jpg └── pexels.jpeg ├── Interpolations ├── Bicubic.jpg ├── Bilinear.jpg ├── Nearest Neighbour.jpg ├── block.png ├── intrpolation.py └── panda.jpg ├── LICENSE.txt ├── Laplacian+Gaussian ├── Gaussian + Laplacian.jpg ├── Laplacian.jpg ├── laplacian.py └── monarch.jpg ├── Laplacian, Sobel, CannyEdge ├── CannyChess.jpg ├── CannyLenna.jpg ├── ChessBoardGrad.png ├── LaplacianChess.png ├── LaplacianLenna.png ├── Lenna.png ├── SobelXChess.jpg ├── SobelXLenna.jpg ├── SobelYChess.jpg ├── SobelYLenna.jpg ├── cannyChess.py ├── cannyLenna.py ├── laplacianChess.py ├── laplacianLenna.py ├── originallenna.jpg ├── sobelxChess.py ├── sobelxLenna.py ├── sobelyChess.py └── sobelyLenna.py ├── Laplacian ├── laplacian.jpg ├── laplacian.py ├── monarch.jpg ├── original.jpg └── pand.jpg ├── Live Hand Gesture Recognition ├── Aptfile ├── Procfile ├── README.md ├── __pycache__ │ └── recognize.cpython-36.pyc ├── app.py ├── recognize.py ├── requirements.txt ├── runtime.txt ├── static │ ├── image1.png │ └── styles │ │ └── home.css └── templates │ └── index.html ├── Log and Contrast_Stretching ├── contrast_stretch.jpg ├── contrast_stretching.py ├── log.jpg ├── log_trans.py └── log_transformed.jpg ├── Morphological Fingerprint Processing ├── 11.jpg ├── 9-p.jpg ├── Closing.png ├── ErodeDilateClose.png ├── ErosionPlusDilation.png ├── Final-ComparisionImage.png ├── Improved.png ├── Input.png ├── Opening.png ├── Processed.png └── morph3.py ├── Morphological Outline ├── 16.jpg ├── Outline.png └── morph4.py ├── Morphological Processing ├── 5.jpg ├── Closing.png ├── Dilation.png ├── Erosion.png ├── Opening.png └── morph1.py ├── Morphological Text Processing ├── 7.jpg ├── Dilation + Erosion.png ├── Dilation.png ├── Processed 1.png ├── Processed 2.png ├── improved.jpg └── morph2.py ├── Normalize Histogram ├── equilised.jpg ├── equilisedAutomated.jpg ├── hist.png ├── hist.py ├── histogram.png └── norm.png ├── OTSU Thresholding ├── Otsus.jpg ├── binarythresh1.jpg ├── blur1.jpg ├── gray1.jpg ├── noisy_leaf.jpg ├── otsu-orig.png ├── otsu-transform.png └── thresholding.py ├── Object Movement Tracking ├── Screenshot from 2020-04-12 22-02-01.png ├── blue_cap.py └── get_hsv.py ├── OpenCV KMeans ├── building.png ├── k=3.jpg ├── k=5.jpg ├── k=8.jpg └── kmeans.py ├── Perspective Transformation ├── ch.jpeg ├── ch.jpg ├── chDistorted.jpeg ├── dist.py └── distortion.py ├── README.md ├── Shading Correction ├── ChessBoardGrad.png ├── Converted.png └── chess.py ├── Sobel-X and Y ├── LaplacianLenna.png ├── SobelXLenna.jpg ├── SobelYLenna.jpg ├── pand.jpg ├── sobel-y.py └── sobel.py ├── Successive Rotations ├── 8.jpg ├── rotated45.jpg ├── rotated90.jpg └── rotation.py ├── Video background Subtraction ├── Adaptive Thresholding + Subtract Background Frame.jpg ├── Background Subtractor.jpg ├── Binary Thresholding on Frames + Subtract Background Frame.jpg ├── Binary Thresholding on Frames.jpg ├── Contours Binary Rem Bg Frame.jpg ├── Contours on Adaptive Threshold Frames.jpg ├── Contours on Binary Threshold Frames.jpg ├── Original.jpg ├── bg.jpg ├── cap_diff.py ├── ezgif.com-video-to-gif.gif ├── me.jpg └── singleframe.py ├── VideoCapture_GoogleColab └── vcgc.py └── images ├── DIP.jpg ├── DIP.png ├── averaging.png ├── f.png └── gradient.png /Adaptive+Gaussian Thresholding/AG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Adaptive+Gaussian Thresholding/AG.jpg -------------------------------------------------------------------------------- /Adaptive+Gaussian Thresholding/AM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Adaptive+Gaussian Thresholding/AM.jpg -------------------------------------------------------------------------------- /Adaptive+Gaussian Thresholding/Global.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Adaptive+Gaussian Thresholding/Global.jpg -------------------------------------------------------------------------------- /Adaptive+Gaussian Thresholding/adaptive_thr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Adaptive+Gaussian Thresholding/adaptive_thr.py -------------------------------------------------------------------------------- /Adaptive+Gaussian Thresholding/page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Adaptive+Gaussian Thresholding/page.jpg -------------------------------------------------------------------------------- /Basic Transformations/Translation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Basic Transformations/Translation.jpg -------------------------------------------------------------------------------- /Basic Transformations/basic_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Basic Transformations/basic_transform.py -------------------------------------------------------------------------------- /Basic Transformations/calvinHobbes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Basic Transformations/calvinHobbes.jpeg -------------------------------------------------------------------------------- /Box Filter/boxfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Box Filter/boxfil.png -------------------------------------------------------------------------------- /Box Filter/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Box Filter/filter.py -------------------------------------------------------------------------------- /Box Filter/orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Box Filter/orig.png -------------------------------------------------------------------------------- /Box Filter/panda1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Box Filter/panda1.jpg -------------------------------------------------------------------------------- /Capture Video Frames/capt_video_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Capture Video Frames/capt_video_frame.py -------------------------------------------------------------------------------- /Contours-OpenCV/CannyFish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Contours-OpenCV/CannyFish.jpg -------------------------------------------------------------------------------- /Contours-OpenCV/Contours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Contours-OpenCV/Contours.jpg -------------------------------------------------------------------------------- /Contours-OpenCV/LargestContour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Contours-OpenCV/LargestContour.jpg -------------------------------------------------------------------------------- /Contours-OpenCV/bubblingFish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Contours-OpenCV/bubblingFish.jpg -------------------------------------------------------------------------------- /Contours-OpenCV/contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Contours-OpenCV/contour.py -------------------------------------------------------------------------------- /Digital_Image_Processing,_4th Edition-Rafael Gonzalez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Digital_Image_Processing,_4th Edition-Rafael Gonzalez.pdf -------------------------------------------------------------------------------- /Discrete Fourier Transformation/DFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Discrete Fourier Transformation/DFT.png -------------------------------------------------------------------------------- /Discrete Fourier Transformation/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Discrete Fourier Transformation/Untitled.png -------------------------------------------------------------------------------- /Discrete Fourier Transformation/dft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Discrete Fourier Transformation/dft.py -------------------------------------------------------------------------------- /Discrete Fourier Transformation/idft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Discrete Fourier Transformation/idft.jpg -------------------------------------------------------------------------------- /Est. Transformation/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Est. Transformation/1.jpg -------------------------------------------------------------------------------- /Est. Transformation/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Est. Transformation/image.jpg -------------------------------------------------------------------------------- /Est. Transformation/piecewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Est. Transformation/piecewise.py -------------------------------------------------------------------------------- /Fitting Polygons/Contours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Fitting Polygons/Contours.jpg -------------------------------------------------------------------------------- /Fitting Polygons/Threshold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Fitting Polygons/Threshold.jpg -------------------------------------------------------------------------------- /Fitting Polygons/Triangles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Fitting Polygons/Triangles.jpg -------------------------------------------------------------------------------- /Fitting Polygons/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Fitting Polygons/polygon.py -------------------------------------------------------------------------------- /Fitting Polygons/polygons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Fitting Polygons/polygons.jpg -------------------------------------------------------------------------------- /GaussianFilter+Kernels/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/GaussianFilter+Kernels/convolution.py -------------------------------------------------------------------------------- /GaussianFilter+Kernels/panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/GaussianFilter+Kernels/panda.jpg -------------------------------------------------------------------------------- /Grabcut/Screenshot from 2020-08-14 23-16-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Grabcut/Screenshot from 2020-08-14 23-16-57.png -------------------------------------------------------------------------------- /Grabcut/cut_messi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Grabcut/cut_messi.jpg -------------------------------------------------------------------------------- /Grabcut/grabcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Grabcut/grabcut.py -------------------------------------------------------------------------------- /Grabcut/messi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Grabcut/messi.jpg -------------------------------------------------------------------------------- /Histogram Equalisation/Equalized Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Histogram Equalisation/Equalized Image.png -------------------------------------------------------------------------------- /Histogram Equalisation/equal-hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Histogram Equalisation/equal-hist.png -------------------------------------------------------------------------------- /Histogram Equalisation/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Histogram Equalisation/hist.png -------------------------------------------------------------------------------- /Histogram Equalisation/hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Histogram Equalisation/hist.py -------------------------------------------------------------------------------- /Histogram Equalisation/lowContrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Histogram Equalisation/lowContrast.png -------------------------------------------------------------------------------- /Hough Lines/canny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/canny.jpg -------------------------------------------------------------------------------- /Hough Lines/dilate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/dilate.jpg -------------------------------------------------------------------------------- /Hough Lines/erode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/erode.jpg -------------------------------------------------------------------------------- /Hough Lines/hough.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/hough.jpg -------------------------------------------------------------------------------- /Hough Lines/sudoku.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/sudoku.jpg -------------------------------------------------------------------------------- /Hough Lines/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Hough Lines/sudoku.py -------------------------------------------------------------------------------- /Image Averaging/average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Image Averaging/average.py -------------------------------------------------------------------------------- /Image Temperature/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Image Temperature/hist.png -------------------------------------------------------------------------------- /Image Temperature/warm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Image Temperature/warm.py -------------------------------------------------------------------------------- /Image Temperature/warmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Image Temperature/warmed.jpg -------------------------------------------------------------------------------- /Interpolation-Inverse Mapping/NearestNeighbour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolation-Inverse Mapping/NearestNeighbour.jpg -------------------------------------------------------------------------------- /Interpolation-Inverse Mapping/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolation-Inverse Mapping/interpolation.py -------------------------------------------------------------------------------- /Interpolation-Inverse Mapping/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolation-Inverse Mapping/original.jpg -------------------------------------------------------------------------------- /Interpolation-Inverse Mapping/pexels.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolation-Inverse Mapping/pexels.jpeg -------------------------------------------------------------------------------- /Interpolations/Bicubic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/Bicubic.jpg -------------------------------------------------------------------------------- /Interpolations/Bilinear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/Bilinear.jpg -------------------------------------------------------------------------------- /Interpolations/Nearest Neighbour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/Nearest Neighbour.jpg -------------------------------------------------------------------------------- /Interpolations/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/block.png -------------------------------------------------------------------------------- /Interpolations/intrpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/intrpolation.py -------------------------------------------------------------------------------- /Interpolations/panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Interpolations/panda.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Laplacian+Gaussian/Gaussian + Laplacian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian+Gaussian/Gaussian + Laplacian.jpg -------------------------------------------------------------------------------- /Laplacian+Gaussian/Laplacian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian+Gaussian/Laplacian.jpg -------------------------------------------------------------------------------- /Laplacian+Gaussian/laplacian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian+Gaussian/laplacian.py -------------------------------------------------------------------------------- /Laplacian+Gaussian/monarch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian+Gaussian/monarch.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/CannyChess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/CannyChess.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/CannyLenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/CannyLenna.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/ChessBoardGrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/ChessBoardGrad.png -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/LaplacianChess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/LaplacianChess.png -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/LaplacianLenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/LaplacianLenna.png -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/Lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/Lenna.png -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/SobelXChess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/SobelXChess.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/SobelXLenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/SobelXLenna.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/SobelYChess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/SobelYChess.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/SobelYLenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/SobelYLenna.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/cannyChess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/cannyChess.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/cannyLenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/cannyLenna.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/laplacianChess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/laplacianChess.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/laplacianLenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/laplacianLenna.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/originallenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/originallenna.jpg -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/sobelxChess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/sobelxChess.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/sobelxLenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/sobelxLenna.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/sobelyChess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/sobelyChess.py -------------------------------------------------------------------------------- /Laplacian, Sobel, CannyEdge/sobelyLenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian, Sobel, CannyEdge/sobelyLenna.py -------------------------------------------------------------------------------- /Laplacian/laplacian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian/laplacian.jpg -------------------------------------------------------------------------------- /Laplacian/laplacian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian/laplacian.py -------------------------------------------------------------------------------- /Laplacian/monarch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian/monarch.jpg -------------------------------------------------------------------------------- /Laplacian/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian/original.jpg -------------------------------------------------------------------------------- /Laplacian/pand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Laplacian/pand.jpg -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/Aptfile -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file - -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/README.md -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/__pycache__/recognize.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/__pycache__/recognize.cpython-36.pyc -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/app.py -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/recognize.py -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/requirements.txt -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.4 -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/static/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/static/image1.png -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/static/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/static/styles/home.css -------------------------------------------------------------------------------- /Live Hand Gesture Recognition/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Live Hand Gesture Recognition/templates/index.html -------------------------------------------------------------------------------- /Log and Contrast_Stretching/contrast_stretch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Log and Contrast_Stretching/contrast_stretch.jpg -------------------------------------------------------------------------------- /Log and Contrast_Stretching/contrast_stretching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Log and Contrast_Stretching/contrast_stretching.py -------------------------------------------------------------------------------- /Log and Contrast_Stretching/log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Log and Contrast_Stretching/log.jpg -------------------------------------------------------------------------------- /Log and Contrast_Stretching/log_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Log and Contrast_Stretching/log_trans.py -------------------------------------------------------------------------------- /Log and Contrast_Stretching/log_transformed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Log and Contrast_Stretching/log_transformed.jpg -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/11.jpg -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/9-p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/9-p.jpg -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Closing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Closing.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/ErodeDilateClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/ErodeDilateClose.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/ErosionPlusDilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/ErosionPlusDilation.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Final-ComparisionImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Final-ComparisionImage.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Improved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Improved.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Input.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Opening.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/Processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/Processed.png -------------------------------------------------------------------------------- /Morphological Fingerprint Processing/morph3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Fingerprint Processing/morph3.py -------------------------------------------------------------------------------- /Morphological Outline/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Outline/16.jpg -------------------------------------------------------------------------------- /Morphological Outline/Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Outline/Outline.png -------------------------------------------------------------------------------- /Morphological Outline/morph4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Outline/morph4.py -------------------------------------------------------------------------------- /Morphological Processing/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/5.jpg -------------------------------------------------------------------------------- /Morphological Processing/Closing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/Closing.png -------------------------------------------------------------------------------- /Morphological Processing/Dilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/Dilation.png -------------------------------------------------------------------------------- /Morphological Processing/Erosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/Erosion.png -------------------------------------------------------------------------------- /Morphological Processing/Opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/Opening.png -------------------------------------------------------------------------------- /Morphological Processing/morph1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Processing/morph1.py -------------------------------------------------------------------------------- /Morphological Text Processing/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/7.jpg -------------------------------------------------------------------------------- /Morphological Text Processing/Dilation + Erosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/Dilation + Erosion.png -------------------------------------------------------------------------------- /Morphological Text Processing/Dilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/Dilation.png -------------------------------------------------------------------------------- /Morphological Text Processing/Processed 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/Processed 1.png -------------------------------------------------------------------------------- /Morphological Text Processing/Processed 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/Processed 2.png -------------------------------------------------------------------------------- /Morphological Text Processing/improved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/improved.jpg -------------------------------------------------------------------------------- /Morphological Text Processing/morph2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Morphological Text Processing/morph2.py -------------------------------------------------------------------------------- /Normalize Histogram/equilised.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/equilised.jpg -------------------------------------------------------------------------------- /Normalize Histogram/equilisedAutomated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/equilisedAutomated.jpg -------------------------------------------------------------------------------- /Normalize Histogram/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/hist.png -------------------------------------------------------------------------------- /Normalize Histogram/hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/hist.py -------------------------------------------------------------------------------- /Normalize Histogram/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/histogram.png -------------------------------------------------------------------------------- /Normalize Histogram/norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Normalize Histogram/norm.png -------------------------------------------------------------------------------- /OTSU Thresholding/Otsus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/Otsus.jpg -------------------------------------------------------------------------------- /OTSU Thresholding/binarythresh1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/binarythresh1.jpg -------------------------------------------------------------------------------- /OTSU Thresholding/blur1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/blur1.jpg -------------------------------------------------------------------------------- /OTSU Thresholding/gray1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/gray1.jpg -------------------------------------------------------------------------------- /OTSU Thresholding/noisy_leaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/noisy_leaf.jpg -------------------------------------------------------------------------------- /OTSU Thresholding/otsu-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/otsu-orig.png -------------------------------------------------------------------------------- /OTSU Thresholding/otsu-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/otsu-transform.png -------------------------------------------------------------------------------- /OTSU Thresholding/thresholding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OTSU Thresholding/thresholding.py -------------------------------------------------------------------------------- /Object Movement Tracking/Screenshot from 2020-04-12 22-02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Object Movement Tracking/Screenshot from 2020-04-12 22-02-01.png -------------------------------------------------------------------------------- /Object Movement Tracking/blue_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Object Movement Tracking/blue_cap.py -------------------------------------------------------------------------------- /Object Movement Tracking/get_hsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Object Movement Tracking/get_hsv.py -------------------------------------------------------------------------------- /OpenCV KMeans/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OpenCV KMeans/building.png -------------------------------------------------------------------------------- /OpenCV KMeans/k=3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OpenCV KMeans/k=3.jpg -------------------------------------------------------------------------------- /OpenCV KMeans/k=5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OpenCV KMeans/k=5.jpg -------------------------------------------------------------------------------- /OpenCV KMeans/k=8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OpenCV KMeans/k=8.jpg -------------------------------------------------------------------------------- /OpenCV KMeans/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/OpenCV KMeans/kmeans.py -------------------------------------------------------------------------------- /Perspective Transformation/ch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Perspective Transformation/ch.jpeg -------------------------------------------------------------------------------- /Perspective Transformation/ch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Perspective Transformation/ch.jpg -------------------------------------------------------------------------------- /Perspective Transformation/chDistorted.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Perspective Transformation/chDistorted.jpeg -------------------------------------------------------------------------------- /Perspective Transformation/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Perspective Transformation/dist.py -------------------------------------------------------------------------------- /Perspective Transformation/distortion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Perspective Transformation/distortion.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/README.md -------------------------------------------------------------------------------- /Shading Correction/ChessBoardGrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Shading Correction/ChessBoardGrad.png -------------------------------------------------------------------------------- /Shading Correction/Converted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Shading Correction/Converted.png -------------------------------------------------------------------------------- /Shading Correction/chess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Shading Correction/chess.py -------------------------------------------------------------------------------- /Sobel-X and Y/LaplacianLenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/LaplacianLenna.png -------------------------------------------------------------------------------- /Sobel-X and Y/SobelXLenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/SobelXLenna.jpg -------------------------------------------------------------------------------- /Sobel-X and Y/SobelYLenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/SobelYLenna.jpg -------------------------------------------------------------------------------- /Sobel-X and Y/pand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/pand.jpg -------------------------------------------------------------------------------- /Sobel-X and Y/sobel-y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/sobel-y.py -------------------------------------------------------------------------------- /Sobel-X and Y/sobel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Sobel-X and Y/sobel.py -------------------------------------------------------------------------------- /Successive Rotations/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Successive Rotations/8.jpg -------------------------------------------------------------------------------- /Successive Rotations/rotated45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Successive Rotations/rotated45.jpg -------------------------------------------------------------------------------- /Successive Rotations/rotated90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Successive Rotations/rotated90.jpg -------------------------------------------------------------------------------- /Successive Rotations/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Successive Rotations/rotation.py -------------------------------------------------------------------------------- /Video background Subtraction/Adaptive Thresholding + Subtract Background Frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Adaptive Thresholding + Subtract Background Frame.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Background Subtractor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Background Subtractor.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Binary Thresholding on Frames + Subtract Background Frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Binary Thresholding on Frames + Subtract Background Frame.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Binary Thresholding on Frames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Binary Thresholding on Frames.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Contours Binary Rem Bg Frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Contours Binary Rem Bg Frame.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Contours on Adaptive Threshold Frames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Contours on Adaptive Threshold Frames.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Contours on Binary Threshold Frames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Contours on Binary Threshold Frames.jpg -------------------------------------------------------------------------------- /Video background Subtraction/Original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/Original.jpg -------------------------------------------------------------------------------- /Video background Subtraction/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/bg.jpg -------------------------------------------------------------------------------- /Video background Subtraction/cap_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/cap_diff.py -------------------------------------------------------------------------------- /Video background Subtraction/ezgif.com-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/ezgif.com-video-to-gif.gif -------------------------------------------------------------------------------- /Video background Subtraction/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/me.jpg -------------------------------------------------------------------------------- /Video background Subtraction/singleframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/Video background Subtraction/singleframe.py -------------------------------------------------------------------------------- /VideoCapture_GoogleColab/vcgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/VideoCapture_GoogleColab/vcgc.py -------------------------------------------------------------------------------- /images/DIP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/images/DIP.jpg -------------------------------------------------------------------------------- /images/DIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/images/DIP.png -------------------------------------------------------------------------------- /images/averaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/images/averaging.png -------------------------------------------------------------------------------- /images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/images/f.png -------------------------------------------------------------------------------- /images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BhanuPrakashNani/Image_Processing/HEAD/images/gradient.png --------------------------------------------------------------------------------