UZ-SLAMLab / ORB_SLAM3

ORB-SLAM3: An Accurate Open-Source Library for Visual, Visual-Inertial and Multi-Map SLAM
GNU General Public License v3.0
6.66k stars 2.57k forks source link

Move current frame window to new position with cv::moveWindow not working. #856

Open evertale888 opened 10 months ago

evertale888 commented 10 months ago

Hello guys. Since i always need to drag the current frame window every time during initial runtime, it got me irritated a bit. So,I try to move the current frame window/viewer to new position during starting of the orbslam3. Im using cv::moveWindow for that & unfortunately it does nothing. Seem like i cant change the window position. Any helps are appreciated.

AlfreddGco commented 10 months ago

I think you should maybe try to look for the initialization of the window and see if you are able to set an initial position in there. Not start the window and then try to move it, but start it where you want it to be

evertale888 commented 10 months ago

I think you should maybe try to look for the initialization of the window and see if you are able to set an initial position in there. Not start the window and then try to move it, but start it where you want it to be

Well...i have tried to move it before it start as well (during cv::nameWindow declare).. still cannot.. codes are in the viewer.cc in run() function. i dont think, there are other codes for the window in other files.