by Shahinur | May 2, 2024 | Computer Vision, Deep Learning, Mathematics, OpenCV, Python
This repository demonstrates object detection using two versions of the YOLO model: YOLOv5 and YOLOv8 from Ultralytics. The scripts provided allow you to detect objects in images and videos using pre-trained models, and display or save the annotated outputs using...
by Shahinur | Sep 3, 2021 | Deep Learning, Machine Learning, Miscellaneous, Python
tqdm is a must need python package for all data scientists and artificial intelligence researchers/developers. Sometimes, we need to visualize what is going on in the background. Some programs may require hours to several days to finish. In that case, a progress bar...
by Shahinur | Sep 1, 2021 | Deep Learning, Machine Learning, Python
Anaconda is a fantastic tool for all deep learning, machine learning, and computer vision researcher. It reduces tons of extra work for setting up environments and tools. Personally, I love it so much. Anaconda Navigator is a great UI for setting up environments and...
by Shahinur | Dec 14, 2019 | Python
Matplotlib is a widely used visualization library in Python that allows easy creation of various types of line charts, bar charts, histograms, etc. Since Matplotlib is a visualization library, each example can be quite extensive. Here, we will try to understand this...
by Shahinur | Nov 27, 2019 | Matplotlib, Python
When we use the bar chart in matplotlib python library, the default bar color is uniform. We can change it by simply using the set_color() property. For example, follow this code snippet- import matplotlib.pyplot as plt plt.figure() barlist=plt.bar([1,2,3,4],...
by Shahinur | Nov 16, 2019 | Python
Numerical NumPy, commonly known as NumPy, is a significant library among Python’s numerous libraries. It is widely used for various types of numerical and scientific computing. It is unparalleled for working with multi-dimensional arrays. Let’s first see...
Recent Comments