Python Forum
How to get OpenCV to display entire camera frame?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get OpenCV to display entire camera frame?
#1
I'm using a 180 degree FOV fisheye camera for a project and am having difficulty getting OpenCV to display the entire camera frame. When I open the camera in the standard Windows camera app it shows the full 180 degree FOV, but when I use a simple script to display the camera in Python it crops a decent chunk of the image and nearly halves the FOV.

Image using Windows camera app: https://ibb.co/WFK8Jm2

Image when Python script is running: https://ibb.co/QddnWXJ

Below is the code I'm using:


import cv2

cap = cv2.VideoCapture(0)

# Check if the webcam is opened correctly
if not cap.isOpened():
raise IOError("Cannot open webcam")

while True:
ret, frame = cap.read()
frame = cv2.resize(frame, (1500,1000), fx=0, fy=0, interpolation=cv2.INTER_AREA)
cv2.imshow('Input', frame)

c = cv2.waitKey(1)
if c == 27:
break

cap.release()
cv2.destroyAllWindows()



Anyone know how to stop this auto-cropping and display the full frame? Resizing the window doesn't help. Any help would be much appreciated!
Reply


Messages In This Thread
How to get OpenCV to display entire camera frame? - by George713 - Aug-11-2021, 07:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Exclamation Multi-Threaded Camera Feed issue Khajababa69 0 1,431 May-05-2024, 09:44 PM
Last Post: Khajababa69
  Make entire script run again every 45 mo NDillard 0 887 Jan-23-2024, 09:40 PM
Last Post: NDillard
  How to display <IPython.core.display.HTML object>? pythopen 3 50,584 May-06-2023, 08:14 AM
Last Post: pramod08728
  Get image from PI camera and analyze it korenron 0 1,731 Apr-28-2022, 06:49 AM
Last Post: korenron
  Reiszing figure to occupy entire frame fishbackp 0 2,111 Jan-06-2022, 10:33 PM
Last Post: fishbackp
  Create RTSP stream from camera? korenron 1 4,442 Jan-04-2022, 10:38 AM
Last Post: Larz60+
  How to apply a class method to an entire dataframe column tirtha9 1 6,036 Jan-03-2021, 04:44 AM
Last Post: klllmmm
  2d Array adds last element to entire list waiteup 2 2,946 Nov-19-2020, 08:25 PM
Last Post: bowlofred
Information Unable to display joystick's value from Python onto display box MelfoyGray 2 2,997 Nov-11-2020, 02:23 AM
Last Post: MelfoyGray
  Wifi Camera Connection MeenAg 2 4,381 Oct-02-2020, 06:35 PM
Last Post: MeenAg

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020