目前分類:OpenCV (118)
- Oct 22 Tue 2024 09:44
Increase OpenCV speed by 2x with Python and Multithreading | Tutorial
- Oct 17 Thu 2024 07:54
ArUco marker Detection
- Nov 27 Mon 2023 11:10
Open Source Motion Capture for Autonomous Drones
室內無人機結合3D空間定位及追蹤
- Aug 12 Fri 2022 10:49
安裝darknet yolov4
- Aug 12 Fri 2022 09:57
安裝OpenCV 4.6.0 + OpenCV contrib
到OpenCV github下載OpenCV
- Jun 08 Wed 2022 10:02
Case study
FFT spectrum amplitude using median filters with different kernel sizes
- May 27 Fri 2022 09:21
Unity is not as hard as I thought before
Unity is not as hard as I thought, although I am a newbie in this field. I believe my little step leads me to the future. After a day of playing in the Unity world for the first time. I felt great when I finished a small project. In this project, I tried to integrate EmguCV, which is a wrapped OpenCV for .net framework, into the Unity C# program and did a simple face detection. Each face's location represents an NBA player's position. For example, Stephen Curry is corresponding to face #0, Lebron James is face #1, and Ja Morant is face #2. As the video plays, all the NBA players can move to the locations according to their face numbers.
- Mar 26 Sat 2022 20:45
Camera Calibrartion
- Nov 30 Tue 2021 19:52
How to import OpenCV module into Android Studio Correctly?
- Sep 01 Tue 2020 12:24
OpenVino with Intel Neural Compute Stick 2
- May 28 Thu 2020 17:08
Multiple Object Tracking Benchmark
- May 15 Fri 2020 10:36
How to find out if the rectangle inside another rectangle?
cv::Mat img(cv::Size(800, 800), CV_8UC3);
// big region of interest (ROI)
Rect roi(100, 100, 400, 400);
rectangle(img, roi, Scalar(255, 0, 0), 1);
// some rectangles
vector<Rect> lpROIs;
lpROIs.push_back(Rect(30, 50, 100, 100));
lpROIs.push_back(Rect(420, 250, 100, 100));
lpROIs.push_back(Rect(150, 140, 100, 100));
lpROIs.push_back(Rect(300, 100, 100, 100));
lpROIs.push_back(Rect(250, 250, 100, 100));
lpROIs.push_back(Rect(300, 450, 100, 100));
// check out if the rectangle inside the ROI
for(int i=0; i<lpROIs.size(); i++)
{
// inside the ROI
if( (roi&lpROIs[i])==lpROIs[i] )
rectangle(img, lpROIs[i], Scalar(0,0,255), -1);
else
rectangle(img, lpROIs[i], Scalar(0,255,0), 1);
}
imshow("img", img);
waitKey();
- Mar 31 Tue 2020 18:49
How to load and display an image on Qt GUI with OpenCV 4.2.0
Platform: Windows 10
- Mar 31 Tue 2020 16:55
Creating a Qt Console Application with OpenCV4.2.0
- Mar 24 Tue 2020 16:16
Installing OpenCV 4.2.0 with Contrib + CUDA 10 + cuDNN 7.6.5 on Windows 10
If you are trying to run DNN in OpenCV and unfortunately get such an error message:
- Mar 17 Tue 2020 16:09
Accelerating OpenCV 4 – build with CUDA 10.0 on Windows
- Feb 17 Mon 2020 14:51
Object Tracking using OpenCV with GPU