All Projects → PacktPublishing → Python Image Processing Cookbook

PacktPublishing / Python Image Processing Cookbook

Licence: mit

Projects that are alternatives of or similar to Python Image Processing Cookbook

Gtsrb
Convolutional Neural Network for German Traffic Sign Recognition Benchmark
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Radio Hacking Scripts
Scripts to aid in the manipulation of electromagnetic radiation (for use with gnu_radio and SDR).
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Covid 19 Detection Flask App Based On Chest X Rays And Ct Scans
COVID-19 Detection Chest X-rays and CT scans: COVID-19 Detection based on Chest X-rays and CT Scans using four Transfer Learning algorithms: VGG16, ResNet50, InceptionV3, Xception. The models were trained for 500 epochs on around 1000 Chest X-rays and around 750 CT Scan images on Google Colab GPU. A Flask App was later developed wherein user can upload Chest X-rays or CT Scans and get the output of possibility of COVID infection.
Stars: ✭ 66 (+0%)
Mutual labels:  jupyter-notebook
Learning Deep
All my deep learning notes: contains v1 of machine learning with Jeremy Howard, and v1 of Fastai Deep Learning 2018 part 1
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Duke Tsinghua Mlss 2017
Duke-Tsinghua Machine Learning Summer School 2017
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Exampleplots.jl
Collection of examples and recipes for Plots.jl
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Pybkb v3
Python scripts that help me be a successfull meteorologist. (Python 3)
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Deepbake
Baking Machine Learning into Great British Bake Off
Stars: ✭ 66 (+0%)
Mutual labels:  jupyter-notebook
Daru View
daru-view is for easy and interactive plotting in web application & IRuby notebook. daru-view is a plugin gem to the existing daru gem.
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Pytransit
Fast and easy exoplanet transit light curve modelling.
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Dscourses18
ECON 5970: Data Science for Economists, University of Oklahoma (Spring 2018)
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Pydata Pandas Workshop
Material for my PyData Jupyter & Pandas Workshops, I'm also available for personal in-house trainings on request
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Text Analytics With Python
Learn how to process, classify, cluster, summarize, understand syntax, semantics and sentiment of text data with the power of Python! This repository contains code and datasets used in my book, "Text Analytics with Python" published by Apress/Springer.
Stars: ✭ 1,132 (+1615.15%)
Mutual labels:  jupyter-notebook
Etymap
Interactive visualization of Wiktionary words and etymologies.
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Stock Market Analysis
Analyzing stock market trends using several different indicators in quantum finance. I explore machine learning and standard crossovers to predict future short term stock trends.
Stars: ✭ 66 (+0%)
Mutual labels:  jupyter-notebook
Audio classification
CNN 1D vs 2D audio classification
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Learningdataminingwithpython
Updated code for the Learning Data Mining With Python book
Stars: ✭ 65 (-1.52%)
Mutual labels:  jupyter-notebook
Deeplearning
Deep Learning From Scratch
Stars: ✭ 66 (+0%)
Mutual labels:  jupyter-notebook
C9 Dev Intro Data Science
Sample code for Channel 9 Python for Beginners course
Stars: ✭ 66 (+0%)
Mutual labels:  jupyter-notebook
Cs231n
cs231n assignments sovled by https://ghli.org
Stars: ✭ 1,139 (+1625.76%)
Mutual labels:  jupyter-notebook

Python Image Processing Cookbook

Python Image Processing Cookbook

This is the code repository for Python Image Processing Cookbook, published by Packt.

Over 60 recipes to help you perform complex image processing and computer vision tasks with ease

What is this book about?

Advancements in wireless devices and mobile technology have enabled the acquisition of a tremendous amount of graphics, pictures, and videos. Through cutting edge recipes, this book provides coverage on tools, algorithms, and analysis for image processing. This book provides solutions addressing the challenges and complex tasks of image processing.

This book covers the following exciting features:

  • Implement supervised and unsupervised machine learning algorithms for image processing
  • Use deep neural network models for advanced image processing tasks
  • Perform image classification, object detection, and face recognition
  • Apply image segmentation and registration techniques on medical images to assist doctors
  • Use classical image processing and deep learning methods for image restoration
  • Implement text detection in images using Tesseract, the optical character recognition (OCR) engine
  • Understand image enhancement techniques such as gradient blending

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example,

The code will look like the following:

def get_grid_coordinates(points):
  xmin, xmax = np.min(points[:, 0]), np.max(points[:, 0]) + 1
  ymin, ymax = np.min(points[:, 1]), np.max(points[:, 1]) + 1
  return np.asarray([(x, y) for y in range(ymin, ymax)
         for x in range(xmin, xmax)], np.uint32)

Following is what you need for this book: This book is for image processing engineers, computer vision engineers, software developers, machine learning engineers, or anyone who wants to become well-versed with image processing techniques and methods using a recipe-based approach. Although no image processing knowledge is expected, prior Python coding experience is necessary to understand key concepts covered in the book.

With the following software and hardware list you can run all code files present in the book.

Software and Hardware List

Chapter Software required OS required
1 - 9 Python 3.7, Anaconda version 2019.10 (py37_0), GPU (if available) Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Authors

Sandipan Dey is a data scientist with a wide range of interests, covering topics such as machine learning, deep learning, image processing, and computer vision. He has worked in numerous data science fields, working with recommender systems, predictive models for the events industry, sensor localization models, sentiment analysis, and device prognostics. He earned his master's degree in computer science from the University of Maryland, Baltimore County, and has published in a few IEEE Data Mining conferences and journals. He has earned certifications from 100+ MOOCs on data science, machine learning, deep learning, image processing, and related courses. He is a regular blogger (sandipanweb) and is a machine learning education enthusiast.

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].