Google CTF 2019 Drive to target Excellent work! With your fine sleuthing skills, you managed to find a picture of the handsome creature with its pet biped. At last friends and companionship may be near! Like all inhabitants of this world, you spend an inordinate amount of time on the site, stalking and comparing your…
Category: Python
Augmented Reality Magnification Aid For Low Vision Patients | Magnifi-AR
Augmented Reality Magnification Aid For Low Vision Patients (Magnifi-AR) Abstract Augmented reality (AR) systems that enhance visual capabilities could make text and other fine details more accessible for low vision users, improving independence and quality of life. In this project, I will make the augmented reality magnifier for low vision patients. The main purpose of…
For/Else Loop
For/Else Loop Python Today I encounter python snippet code and something take my attention. And the concept is similar to below code.
1 2 3 4 5 6 7 |
for i in range(7): print("for") if i == 10: print("if") break else: print("else") |
1 2 3 4 5 6 7 8 9 |
Output: for for for for for for for else |
And I recognize else statement is not given an error. After some research, I found the miracle, for/else loop. The concept of this loop is when for is finished without break else…
Human Pose Estimation and 3D posing on Unity: Step 3
Step 3: Moving the particles based on HPE key points In this step, I try to move the spheres on Unity based on the key points which are come from the MQTT message. For changing the position a game object I will use the transform.position code. In the python code which is run.py (image body estimation)…
Human Pose Estimation and 3D posing on Unity: Step 2
Step 2: Communicate between Unity and Python using MQTT In Step 1 of this series run the code for human body pose estimation and find the key points of the body. In this step, we send this key points on the internet. Firstly, we must create the broker(server) of the MQTT system. I am using Node.js for…
3D & 2D Human Pose Estimation
Nowadays, I research about the Pose estimation and OpenCV for the new projects. I found the good articles on this topic so that I want to share with you; Firstly, I mentioned about the VNECT: Real-time 3D Human Pose Estimation with Single RGB camera; You can find the article and Website: Article & Website We present…