Questions tagged [opencv]

For theoretical questions that involve the OpenCV library. Note that asking about programming issues or about the software libraries is generally OFF-TOPIC here.

16 questions
3
votes
1 answer

Can I build a CNN for image classification tasks just with OpenCV?

I have practiced building CNNs for image classification with TensorFlow, which is a nice library with good documentation and tutorials. However, I found that TensorFlow is too complicated and cumbersome. Can I build a CNN for image classification…
2
votes
0 answers

Which method can accurately detect circular/angular shapes? (attached example)

Is there a method to detect shapes like these accurately and efficiently? I have tried the OpenCv Haar Casacade Classifier which does not work well. These shapes should all be the same class object and can be of different sizes and a little…
2
votes
2 answers

How to classify two very similar images using Deep Learning?

I am a newbie in Computer Vision. I have a scenario in which I have a stationary camera in a factory. I want to detect whether the technician is working on the machine or not. Images are like the following: Technician working: Technician…
2
votes
2 answers

What is the minimum video resolution I need to identify anyone with facial recognition?

I am currently working on a small project where I am trying to automate some stuff at home. I am building a model capable of identifying my face with OpenCV. This will be a live feed. I am making the project's estimations and have a really low…
1
vote
1 answer

Feature Extraction for printer classification

I need some advice. I am currently trying to do a printer classification with ML/DL. What do I have? 11 colored-images with high resolution from 8 different inkjet-printers (in total 88 images) I have 8 classes (printers) All images are scanned with…
1
vote
0 answers

In SIFT, how is the coordinate system being rotated?

I need to understand how SIFT calculates the descriptors for the keypoints. Intuitively, I understand that it takes each keypoint, calculates the gradients for each pixel in a neighborhood of the keypoint, and that's basically the descriptor for the…
0
votes
1 answer

Train a Machine Learning Model to Scan Through a Page of Specific Format and Scrap the Texts

I want to translate already printed papers and use the texts for further use. Basically, the pages will contain MCQ questions and I want to scan a scanned version of the hard copy and store them into JSON file. Now how can I train a model to achieve…
0
votes
0 answers

What is the best approach to remove this additional container from the cropped image?

I'm working on a computer vision application in Python to analyze images of ice cream cuttings to measure the amount of variegate(ie. fruit syrup or fudge) compared to the base ice cream. My approach is to crop the ice cream, generate a mask…
0
votes
0 answers

Image Alignment/Homography of Subject in Bounding Box

I've been trying to design an algorithm for aligning an object across two photos in realtime. I am able to localize the object (create an ROI/BBox) through an object detection (siamese) network for both photos, leaving me with a cropped image with…
0
votes
0 answers

Is there any way to change the YOLO algorithm's feature extractor with DenseNet?

Is there any way to change the YOLO algorithm's feature extractor with DenseNet? I saw that Circular Bounding Boxes could be used instead of Rectangular Bounding Boxes. How would you change the data set format? Is there any tutorial about this?
0
votes
0 answers

Is it possible to create a distance estimation model from something like the KITTI dataset?

I am unsure about how to word this question correctly, edits appreciated. I am trying to create a neural network model that can predict distance from camera feed. And I am doing it by feeding actual distance data from an images corresponding LIDAR…
0
votes
1 answer

Best way to generate a human face over a face generated by FaceFormer framework?

FaceFormer framework generates a talking face from audio, focusing on the lip and face movement when a person talks. Now from that what would be the best way to generate a human face on top of that? I tried DeepFaceLive that didn't give good results…
0
votes
2 answers

What is the difference between face identification, face verification, and face recognition?

I am confused. On some websites, face identification is just face detection, while face verification is finding the person's identification. They are both considered components of face recognition. But in some websites face verification is 1-to-1…
0
votes
0 answers

openVINO human pose

Can someone give me a tip on what to research for predicting human pose with computer vision with the open VINO toolkit? Not a lot of wisdom here so any tips appreciated even at a high level on what I need to learn/research... I preprocess an image…
bbartling
  • 101
  • 2
0
votes
0 answers

Mapping an image to a well defined object using OpenCV

I am completely new to computer vision and I am working on a small hobby project. The goal is to use camera footage of a foosball table to map the image to already well defined object geometry with few moving parts. To illustrate the exact problem…
apriede
  • 1
  • 2
1
2