filmov
tv
Real-time Canny edge detection using OpenCV and CUDA

Показать описание
OpenCV 2.4.11
CUDA 7.0 on GeForce 660GTX
Logitech HD Webcam C525
Pseudocode:
cv::VideoCapture captureDevice(0);
while (true)
{
cv::Mat source;
gpu::GpuMat d_source(source);
gpu::GpuMat d_greyscale, d_blurred, d_dst;
gpu::cvtColor(d_source, d_greyscale, CV_BGR2GRAY);
gpu::blur(d_greyscale, d_blurred, Size(3, 3));
int ratio = 3;
int kernel_size = 3;
gpu::Canny(d_blurred, d_dst, lowThreshold, lowThreshold * ratio, kernel_size);
cv::Mat cannyEdge(d_dst);
cv::imshow("Canny edge video", cannyEdge);
}
CUDA 7.0 on GeForce 660GTX
Logitech HD Webcam C525
Pseudocode:
cv::VideoCapture captureDevice(0);
while (true)
{
cv::Mat source;
gpu::GpuMat d_source(source);
gpu::GpuMat d_greyscale, d_blurred, d_dst;
gpu::cvtColor(d_source, d_greyscale, CV_BGR2GRAY);
gpu::blur(d_greyscale, d_blurred, Size(3, 3));
int ratio = 3;
int kernel_size = 3;
gpu::Canny(d_blurred, d_dst, lowThreshold, lowThreshold * ratio, kernel_size);
cv::Mat cannyEdge(d_dst);
cv::imshow("Canny edge video", cannyEdge);
}
Canny Edge Detector - Computerphile
EE28-Implementation of real-time edge detection using canny and sobel algorithms
Real-Time Edge Detection using OpenCV in Python
Real Time Canny Edge Detection of 1080p Video with Zybo FPGA
Real-time Lane Detection Mobile App using Canny Edge Detection
Real-time Edge Detection Using Python
Real Time Edge detection on a 2k 60fps Vechicle Camera [Turn on Captions for Explanations]
Real-time Canny edge detection using OpenCV and CUDA
Real Time Canny Edge Detection Using Python || 2019 ||
Canny edge detection matrix real time in opencv
Real-time CUDA Canny Edge Detector
Real Time Canny Edge Detection with Zybo FPGA: Sobel & Canny Edge Detection with Zynq
Real-time edge detection for videos
Real time edge detection in a browser using python
Canny edge detector - small threshold
Canny Edge Detection test using OpenCV
14. Realtime Edge Detection for Video Feed - with OpenCV
Canny edge detection algorithm in C synthesized to FPGA hardware by LegUp
Real-time Edge Detection on FPGA
Canny Edge Detection? ORB Feature Matching? - OpenCV Object Detection in Games #7
Real Time Edge Detection using Open-cv & Python | Image Processing Basics Part-2
Canny edge detection matrix real time in opencv
Real-Time Edge Detection: Live Feed with Python
Edge Detection using OpenCV | Canny Algorithm
Комментарии