Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
OpenCV Android Programming By Example
OpenCV Android Programming By Example

OpenCV Android Programming By Example: Leverage OpenCV to develop vision-aware and intelligent Android applications.

Arrow left icon
Profile Icon Amgad Muhammad
Arrow right icon
AU$24.99 per month
Full star icon Full star icon Full star icon Full star icon Empty star icon 4 (1 Ratings)
Paperback Dec 2015 202 pages 1st Edition
eBook
AU$14.99 AU$36.99
Paperback
AU$45.99
Subscription
Free Trial
Renews at AU$24.99p/m
Arrow left icon
Profile Icon Amgad Muhammad
Arrow right icon
AU$24.99 per month
Full star icon Full star icon Full star icon Full star icon Empty star icon 4 (1 Ratings)
Paperback Dec 2015 202 pages 1st Edition
eBook
AU$14.99 AU$36.99
Paperback
AU$45.99
Subscription
Free Trial
Renews at AU$24.99p/m
eBook
AU$14.99 AU$36.99
Paperback
AU$45.99
Subscription
Free Trial
Renews at AU$24.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $24.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

OpenCV Android Programming By Example

Chapter 2. App 1 - Building Your Own Darkroom

In this chapter, you will learn about how images are stored and represented in OpenCV and how to utilize this representation to implement interesting algorithms that will enhance how your images look.

We will first explain the digital image representation and different color spaces to explore the important Mat class in OpenCV.

Then, we will go through the steps to load an image from your phone gallery and display it on your device screen regardless of the image resolution.

Finally, you will learn about the image histograms and how to calculate and use them to enhance your images, whether they are black and white or colored.

We will cover the following topics in this chapter:

  • Digital images
  • Processing the images stored on your phone
  • Calculating an image histogram
  • Enhancing the image contrast

Digital images

Images can be found around us wherever we look; so it is very important to understand how images are represented and how the images' colors are mapped if we want to understand, process, and analyze these images automatically.

Color spaces

We live in a continuous world, so to capture a scene in a discreet digital sensor, a discrete spatial (layout) and intensity (color information) mapping has to happen in order to store the real-world data in a digital image.

The two-dimensional digital image, D(i,j), represents a sensor response value at the pixel indicated by the row number i and column number j, starting from the left upper corner as i=j=0.

To represent colors, a digital image usually contains one or more channels to store the intensity value (color) of each pixel. The most widely used color representation is a one-channel image, also known as a grayscale image, where every pixel is assigned a shade of gray depending on its intensity value: zero is black and the maximum...

Processing the images stored on your phone

In this section, you will learn how to load an image from your phone and apply some interesting image processing algorithms to it, such as contrast enhancing, smoothing (removing noise from your image), and applying some filters.

Loading an image to a Mat object

Let's get started by first creating a new Android project. As you've seen in the previous chapter, in order to start using the OpenCV algorithms, you will need to add the OpenCV library to your project:

  1. Launch Eclipse.
  2. Create a new Android project application; let's name it DarkRoom.
  3. Choose the package name. In this example, I chose it to be com.example.chapter2.darkroom.
  4. Set the minimum required SDK to be anything above API 11 (Android 3.0). In my case, and it is highly recommended, I chose it to be API 16 (Android 4.1). For the target SDK, you should choose API 19 because there is an issue when loading the OpenCV library if you are using a target SDK higher than 19.
  5. Click Next...

Calculating an image histogram

We are one step closer to understanding the image content, and one of the fundamental image analysis techniques is calculating the image histogram.

What are histograms?

Histograms are plots used to give you an overall idea about the distribution of the intensity values of a given image. In the x axis, the plot will have values ranging from 0 to 255 depending on the image depth as explained earlier and the y axis will represent the number of occurrences of the corresponding intensity value.

Once you calculate and display the histogram of an image, you can easily gain some insights about the image contrast, intensity distribution, and so on. Actually, if you normalize the histogram, making it sum to one, you can treat the histogram as a probability density function and answer questions such as what is the probability of a given intensity value to occur on an image and the answer is simply the y axis reading at that intensity value. In the following figure, you...

Enhancing the image contrast

Now that you understand what a histogram is and how to calculate it, it is time to look at one of the most widely used image enhancing techniques: the histogram equalization. The histogram equalization technique is used to enhance the image contrast, that is, the difference between the minimum and maximum intensity values in order to strengthen image details that could be washed out.

Understanding histogram equalization

From an abstract point of view, what the histogram equalization does is it finds a function that takes the image's original histogram and transforms it to a stretched histogram with a uniform distribution of the image intensity values, thus enhancing the image contrast.

In practice, histogram equalization doesn't produce a perfectly equalized output histogram; however, it forms a good approximation of the needed transformation that spreads the intensity values more evenly over the defined equalization range of the image:

Understanding histogram equalization

Enhancing grayscale...

Summary

By now you should have learned about how images are represented and stored in OpenCV. You also developed your own darkroom application, loaded images from your gallery, calculated and displayed their histograms, and executed histogram equalization on different color spaces in order to enhance how the image looks.

In the next chapter, we will develop a new application to utilize more of the OpenCV image processing and computer vision algorithms. We will use algorithms to smooth images and detect ages, lines, and circles.

Left arrow icon Right arrow icon

Key benefits

  • • This is the most up-to-date book on OpenCV Android programming on the market at the moment. There is no direct competition for our title.
  • • Based on a technology that is increasing in popularity, proven by activity in forums related to this topic.
  • • This book uniquely covers applications such as the Panoramic viewer and Automatic Selfie, among others.

Description

Starting from the basics of computer vision and OpenCV, we'll take you all the way to creating exciting applications. You will discover that, though computer vision is a challenging subject, the ideas and algorithms used are simple and intuitive, and you will appreciate the abstraction layer that OpenCV uses to do the heavy lifting for you. Packed with many examples, the book will help you understand the main data structures used within OpenCV, and how you can use them to gain performance boosts. Next we will discuss and use several image processing algorithms such as histogram equalization, filters, and color space conversion. You then will learn about image gradients and how they are used in many shape analysis techniques such as edge detection, Hough Line Transform, and Hough Circle Transform. In addition to using shape analysis to find things in images, you will learn how to describe objects in images in a more robust way using different feature detectors and descriptors. By the end of this book, you will be able to make intelligent decisions using the famous Adaboost learning algorithm.

Who is this book for?

If you are an Android developer and want to know how to implement vision-aware applications using OpenCV, then this book is definitely for you. It would be very helpful if you understand the basics of image processing and computer vision, but no prior experience is required

What you will learn

  • Identify and install all the elements needed to start building vision-aware Android applications
  • Explore image representation, colored and gray scale
  • Recognize and apply convolution operations and filtering to deal with noisy data
  • Use different shape analysis techniques
  • Extract and identify interest points in an image
  • Understand and perform object detection
  • Run native computer vision algorithms and gain performance boosts

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 15, 2015
Length: 202 pages
Edition : 1st
Language : English
ISBN-13 : 9781783550593
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $24.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Dec 15, 2015
Length: 202 pages
Edition : 1st
Language : English
ISBN-13 : 9781783550593
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
AU$24.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
AU$249.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts
AU$349.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total AU$ 197.97
OpenCV Android Programming By Example
AU$45.99
Mastering OpenCV Android Application Programming
AU$75.99
OpenCV By Example
AU$75.99
Total AU$ 197.97 Stars icon
Banner background image

Table of Contents

7 Chapters
1. Getting Yourself Ready Chevron down icon Chevron up icon
2. App 1 - Building Your Own Darkroom Chevron down icon Chevron up icon
3. App 2 - Software Scanner Chevron down icon Chevron up icon
4. App 2 - Applying Perspective Correction Chevron down icon Chevron up icon
5. App 3 - Panoramic Viewer Chevron down icon Chevron up icon
6. App 4 – Automatic Selfie Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
(1 Ratings)
5 star 0%
4 star 100%
3 star 0%
2 star 0%
1 star 0%
Walter Sep 13, 2023
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
The book covers a interesting topic, but there is certainly some bugfixing involved if you use a newer library version and android obviously too:Obviously first of all you can just use IntelliJ or android studio for android developmentIt was challenging to get into the first chapters, because the file / image chooser from the beginning works differently in 2023, as android doesnt like file paths at all by now, and the file choosing must happen as input stream directly from the loaded Uri. The getPath method is obsolete because android doesnt want you to use them anymore, instead use a mediaquery. Android will refuse to give the app read access like back when in 2015 the book released.--->To inread image from storage:InputStream inputStream = getContentResolver().openInputStream(selectedImageUri); Mat imageMat = Imgcodecs.imdecode(new MatOfByte(IOUtils.toByteArray(inputStream)), Imgcodecs.IMREAD_COLOR);-> obviously you have to fix the load-image method aswell and skip the path making thing and just set the loaded image as original image to work with, instead of reading the path.----I also had trouble with installing Open Cv itself, but that can be fixed by using opencv from quickbirds from GitHub and use their solution by loading it with the (app)-build.gradle file.-----The async method, to check if open cv is loaded, made my app crash aswell, just use a log msg: Log.d("OpenCv loaded: " + OpenCVLoader.initDebug());-----Other than that i am half way through the book and some method names have changed, still its a great book to get into OpenCv i guess.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.