opencv tag

104 questions


1 answers
71 views
0

1 answers
84 views
0
I have a question about image filtering using adnroid openCv.

Refer to http://webnautes.tistory.com/1054 to learn how to use C language on Android. In this example, when you take a picture, you put a filter on the cameraWhat I want to do is to filter the images ...

2 years ago

1 answers
43 views
0
Can't you check the entire pixel value of the image array in python opencv?

In matlab, the matrix element values of each variable can be immediately checked.When the image was loaded into the read, it was easy to check the values for each pixel, and When I opened it with the ...

2 years ago

1 answers
165 views
0
Which module should I use to create an OMR recognition code with Python?

I'm a beginner Wang who just finished his introduction to Python.If students take a picture of the checked OMR card with their cell phone and send it, I would like to save it as a picture file and cal...

2 years ago

1 answers
63 views
0
Python webcam capture

path = os.path.dirname(__file__) filename = recognizeface.jpg fullpath = os.path.join(path, filename) cap = cv2.VideoCapture(0) # Capture Frame ret, frame = cap.read() ## Set frame color gray = cv2....

2 years ago

1 answers
61 views
0
openvimwrite path problem

i = 2 #intcv2.imwrite([r'C:\Users\Desktop\result (' + str(i) + ').png'], result) #result is 2D 16bit image'result (2).I want to save the image under the name 'png'.I'm going to put the imwrite in the ...

2 years ago

2 answers
60 views
0
python opencv error

import cv2capture = cv2.VideoCapture(0)capture.set(cv2.CAP_PROP_FRAME_WIDTH, 640)capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)while True: ret, frame = capture.read() cv2.imshow(VideoFrame, frame) if cv2...

2 years ago

1 answers
125 views
0
I'd like to record RGB images that were uploaded by Unity Engine using Kinect.

I'd like to record RGB images that were uploaded by UNI.T. Engine using Kinect camera.Is there a way to save and recall after recording using openCV?

2 years ago

2 answers
69 views
0
Python Repeated Variable Declaration

array1 = np.array(img[y+1,x])array2 = np.array(img[y+2,x])array3 = np.array(img[y+3,x])array4 = np.array(img[y+4,x])array5 = np.array(img[y+5,x])array6 = np.array(img[y+6,x])array7 = np.array(img[y+7,...

2 years ago

1 answers
91 views
0
[Python to C++] How do I get bitten by the for moon? Create a file name.

If you squeeze Python, it looks like belowfor i in range(0,10) CT_img = cv2.imread(r'D:\Remedi\Exercise\Xray\corrected images by CBCT/CBCT (' + str(i) + ').png', -1)I'd like to change it to C++ as bel...

2 years ago
« - 10 - »

© 2024 OneMinuteCode. All rights reserved.