Published in Jungletronics·3 hours agoA Django FotoBlog in VS Code — Quick StartHow To Create A FotoBlog in VS Code — Part I — DjangoSeries Episode # 15 — Starter code for this episode: GitHub link Hi everyone! In this article we will create a photo album app named: fotoBlog. We’ll initialize our project in a batch script at the Terminal command line (Ubuntu 22.04.2 LTS): 00#Step — Go to this post and get your vs code ready for…Python33 min readPython33 min read
Published in Jungletronics·Mar 10Python 4 Engineers -Linear programming ExercisesThese Techniques are Awesome! Let’s Practice! #pySeries — Episode 21 — Linear programming is an optimization technique to solve systems of linear constraints with a linear objective function. It is the most known method of Operations Research. let's exercise to understand LP in python? !pip install pulp Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/ Requirement already satisfied: pulp in /usr/local/lib/python3.9/dist-packages (2.7.0)Pulp4 min readPulp4 min read
Published in Jungletronics·Dec 15, 2022ISS Tracking Project — PythonGet an Email alert when International Space Station (ISS) is above of us in the sky, at night — #PurePythonSeries — Episode #15 — iss_tracking_project: Python International Space Station (ISS) Tracking project in Python. Dez, 2022. Based on: Angela Yu from London 100 Days of Code: The Complete Python Pro Bootcamp for 2023 Project Description: This app will email you based on the event that the International Space Station (ISS) is above of us in the sky…Python33 min readPython33 min read
Published in Jungletronics·Oct 23, 2022Advanced Python Technologies IIIFace Recognition w/ Colab #PurePythonSeries — Episode #14 — Hi, this time let’s use Google Colaboratory. Face recognition library works well here, but there’s a secret that I’ll tell you right away: Here is the result for code below: All faces were detected and blurredFace Recognition3 min readFace Recognition3 min read
Published in Jungletronics·Oct 23, 2022Advanced Python Technologies IIFace Recognition w/ Jupyter Notebook & Ubuntu #PurePythonSeries — Episode #13 — Hi, Let’s play with face recognition in Linux Ubuntu and Anaconda Jupyter? We will use https://pypi.org/project/face-recognition/ library. Please visit ageitgey / face_recognition Public Github. It is awesome! Let’s get started! 00#step — HARDWARE Laptop: Dell Inc. G3 3590 8,0 GiB RAM Processor : Intel® Core™ i7-9750H CPU @ 2.60GHz × 12 OS…Face Recognition Software5 min readFace Recognition Software5 min read
Published in Jungletronics·Oct 18, 2022Advanced Python Technologies Iqrcode, Speech Recognition in Python, Google Speech Recognition #PurePythonSeries — Episode #12 — Tech 1 # qrcode visit: https://pypi.org/project/qrcode/ What is a QR Code? A Quick Response code is a two-dimensional pictographic code used for its fast readability and comparatively large storage capacity #### In the code below: First we install qrcode directly from jupyter notebook. Then, after importing the lib, we generate a qrcode, and save…Qr Code4 min readQr Code4 min read
Published in Jungletronics·Oct 9, 2022OpenCV — Object DetectionViola–Jones Object Detection Framework #PyVisionSeries — Episode #08 — This is all about object recognition. Please, feel free to read this article: Haar-like feature (wikipedia) All we’re doing here is detecting Russian license plates and images and then blurring them using haarcascade method. 00 step # Import libs import cv2 import numpy as np import matplotlib.pyplot …License Plate Detection4 min readLicense Plate Detection4 min read
Published in Jungletronics·Oct 9, 2022YOLO — Object DetectionThe State of the Art in Object Detection Framework! #PyVisionSeries — Episode #07 — This is a brief overview and introduction to the YOLO object detection algorithm. So this is one of the state of the art image detection algorithms, and it's known as YOLO, which stands for you only look once YOLO can view an image and then draw bounding boxes over what…Detect Objects5 min readDetect Objects5 min read
Published in Jungletronics·Oct 8, 2022OpenCV — Resize an ImageHow To Resize Without Distortion #PyVisionSeries — Episode #05 — The problem is quite simple: I want to take a very large image (3448x4592) and transform it into, for example,(200x200) pixels, without distorting it. How to make it? This is all about aspect ratio.Opencv5 min readOpencv5 min read
Published in Jungletronics·Oct 7, 2022OpenCV — Histogram EqualizationHOW TO Equalize Histograms Of Images — #PyVisionSeries — Episode #04 — INDEX 01 step — Equalizing Manually 02 step — And by using the OpenCV function What is an Image Histogram? It is a graphical representation of the intensity distribution of an image. It quantifies the number of pixels for each intensity value considered. 01 step — Equalizing Manually %matplotlib inline from IPython.display import display, Math, LatexHistogram Equalization5 min readHistogram Equalization5 min read