New pages
Jump to navigation
Jump to search
- 15:55, 30 August 2024 RDP Access (hist | edit) [491 bytes] Simon (talk | contribs) (Created page with "You will need a GNOME Shell extension to solve this problem. First, install install gnome-shell-extension-manager with this command: ```sudo apt install gnome-shell-extension-manager``` The open the newly installed app called Extension in the GUI. Within this app, search for and install the Allow locked Remote Desktop GNOME Shell extension. Now you will be able to remotely connect to this computer even when the screen is locked. You will still need to be logged in loc...")
- 20:35, 19 April 2024 Opencv with cuda support (hist | edit) [536 bytes] Simon (talk | contribs) (Created page with "Install JTOP <pre>sudo apt install python3-pip</pre> After pip installs: <pre>sudo pip3 install -U jetson-stats</pre> Install jetson containers <pre> # install the container tools git clone https://github.com/dusty-nv/jetson-containers bash jetson-containers/install.sh </pre> Then staying in the home directory <pre> sudo ./jetson-containers/packages/opencv/opencv_install.sh https://nvidia.box.com/shared/static/ngp26xb9hb7dqbu6pbs7cs9flztmqwg0.gz OpenCV-4.8.1-aarch64.t...")
- 09:06, 20 March 2024 Front Gate (hist | edit) [240 bytes] Simon (talk | contribs) (Created page with "Jeatone is the supplier Setup information can be found at http://www.jeatone.com/col.jsp?spm=a2g0s.imconversation.0.0.74f63e5f7uslaH&id=110 Select SIP villa multiple matching sets operation PIN Code is 666666")
- 13:05, 2 March 2024 Fix Docker (hist | edit) [206 bytes] Simon (talk | contribs) (Created page with "Use the following commands <pre> sudo update-alternatives --set iptables /usr/sbin/iptables-legacy sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy sudo systemctl restart docker </pre>")
- 10:28, 24 February 2024 Enable CSI Camera via header pins (hist | edit) [208 bytes] Simon (talk | contribs) (Created page with "Got to https://docs.nvidia.com/jetson/archives/r36.2/DeveloperGuide/HR/ConfiguringTheJetsonExpansionHeaders.html?highlight=jetson%20io#running-jetson-io run ```sudo /opt/nvidia/jetson-io/jetson-io.py```")
- 14:06, 21 January 2024 Compile opencv with cuda support (hist | edit) [535 bytes] Simon (talk | contribs) (Created page with "https://www.youtube.com/watch?v=art0-99fFa8 https://github.com/mdegans/nano_build_opencv/tree/master You want to change line 114 in opencv/modules/dnn/src/cuda4dnn/primitives/normalize_bbox.hpp: from: <pre> if (weight != 1.0)</pre> to: <pre> if (weight != static_cast<T>(1.0))</pre> As well as line 124 in opencv/modules/dnn/src/cuda4dnn/primitives/region.hpp (due to a similar error): from: <pre> if (nms_iou_threshold > 0) {</pre> to: <pre> if (nms_iou_threshold > stat...")
- 14:03, 21 January 2024 Jetson Orin Nano (hist | edit) [99 bytes] Simon (talk | contribs) (Created page with "You want to change line 114 in opencv/modules/dnn/src/cuda4dnn/primitives/normalize_bbox.hpp: from: if (weight != 1.0) to: if (weight != static_cast<T>(1.0)) As well as line 124 in opencv/modules/dnn/src/cuda4dnn/primitives/region.hpp (due to a similar error): from: if (nms_iou_threshold > 0) { to: if (nms_iou_threshold > static_cast<T>(0)) { Explanation: Since both variables, weight and nms_iou_threshold, are templated and finally boil down to a primitive type during...")