nvidia-jetson-opencv-101

NVIDIA Jetson TX1 OpenCV 101 Tutorials

View project on GitHub

Episode 3: Basic Operations

Start with an app that displays an image as a Mat object, then resize, rotate it or detect “canny” edges, then display the result. Then, to ignore the high-frequency edges of the image’s feather, blur the image and then run the edge detector again. With higher window sizes, the feather’s edges disappear, leaving behind only the more significant edges present in the input image.

Video

Step 1 : Resizing image

Resizing

Step 2 : Rotating image

Rotating

Step 3 : Detecting edges with Canny

Canny

Increasing threshold

Canny less edges

Step 4 : Detecting edges after blurring with different blur kernel

Blurring 1

Blurring 2

Blurring 3