Java image processing recipes: with opencv and jvm 1st edition nicolas modrzyk - The latest updated
Modrzyk
Visit to download the full and correct content document: https://textbookfull.com/product/java-image-processing-recipes-with-opencv-and-jvm1st-edition-nicolas-modrzyk/
More products digital (pdf, epub, mobi) instant download maybe you interests ...
Java Image Processing Recipes: With OpenCV and JVM
Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the book’s product page, located at www.apress.com/9781484234648 . For more detailed information, please visit http://www.apress.com/source-code .
ISBN 978-1-4842-3464-8 e-ISBN 978-1-4842-3465-5 https://doi.org/10.1007/978-1-4842-3465-5
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, speci ically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on micro ilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the bene it of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identi ied as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights
While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that
may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein.
Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013 Phone 1-800SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm com, or visit wwwspringeronline com Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.
Introduction
My father is a dentist. When I was in my early childhood, he used to repeat the same sentence over and over again, which as far as I can remember and translate properly now was something like:
“Son, get the right tool for the job.”
And as he was looking at me trying to wash the car with the wrong washing product and spending twice the amount of time that I should have, I knew somewhere deep inside of me that he was right.
He did not use a screwdriver to pull out teeth from his patients, and he had what seemed like twenty different brushes to clean each type of tooth. I even thought it was funny at the time.
Fast-forward thirty years later; I was talking about this book with him and he added:
“Well, son, you know, it’s not only about the right tool, it’s about the right tool at the right time.”
And so, this is the philosophy guiding this book.
OpenCV, the computer vision library, has always been one of the tools to work on imaging- and vision-related projects, even
more so with every improvement in AI and neural networks. But OpenCV was always taking some time to get the right libraries, and the right build tools, and the right build settings, and so forth.
The vision of the Clojure wrapper Origami is to bring you all the power of OpenCV to your hands almost instantly, along with a pleasurable syntax. This way we hope you can focus and spend your time entirely on the job, not on the tool.
Chapter 1 will introduce you to pure OpenCV on the JVM using Java, Scala, and Kotlin and present some of their shortcomings.
Chapter 2 will present Origami, the Clojure wrapper, and how to use it to perform simple image manipulation.
Chapter 3 will get you up to speed with more advanced concepts of image manipulation, like shape inding, but still in a pleasant syntax.
Finally, Chapter 4 moves to video analysis, with shape inding, transformations, and various techniques to analyze real-time streams with ease.
The original version of the book FM was revised. The changes have been made in the editorial section of the copyright page.
Acknowledgments
It’s been the most amazing typing race of my life to get this book out on time, and to beat time and the odds, I got support from so many people that it would take another book just to write the list of names. So …
Thank you to all my family, brother, sister, friends, Abe-san, all my soccer friends, people still having Guinness pints in Ireland (keep one for me!), the awesome people in America (who sometimes send LP records… when I need them the most), Sawada-san, Chris and the Biners, my French friends (always there for support even when not being asked for it), publisher Apress, Divya for never being impressed and kicking my butt on a regular basis, and … the people deep in my heart for your NEVERENDING support. I never could have inished this without you. I appreciate it so much.
And, of course… thank you to my two beautiful daughters, Mei and Manon, for keeping up and always doing their best even during hard times. You simply rock! I love you.
TABLE OF CONTENTS
Chapter 1: OpenCV on the JavaVM
1-1 Getting Started with Leiningen
Problem Solution
How it works
1-2 Writing Your First OpenCV Java Program Problem
Solution
How it works
1-3 Automatically Compiling and Running Code Problem Solution
How it works
1-4 Using a Better Text Editor Problem
Solution
How it works
1-5 Learning the Basics of the OpenCV Mat Object Problem Solution
How it works
1-6 Loading Images from a File Problem
Solution
How it works
1-7 Saving Images into a File
Problem
Solution
How it works
1-8 Cropping a Picture with Submat
Problem
Solution
How it works
1-9 Creating a Mat from Submats
Problem
Solution
How it works
1-10 Highlighting Objects in a Picture
Problem
Solution
How it works
1-11 Using a Canny Result as a Mask
Problem Solutions
How it works
1-12 Detecting Edges with Contours
Problem
Solution
How it works
1-13 Working with Video Streams
Problem
Solution
How it works
1-14 Writing OpenCV Code in Scala
Problem
Solution
How it works
1-15 Writing OpenCV Code in Kotlin
Problems
Solutions
How it works
Chapter 2: OpenCV with Origami
2-1 Starting to Code with Origami
Problem
Solution
How it works
2-2 Working with Mats
Problem
Solution
How it works
2-3 Loading, Showing, Saving Mats
Problem
Solution
How it works
2-4 Working with Colors, ColorMaps, and ColorSpaces
Problem
Solution
How it works
2-5 Rotating and Transforming Mats
Problem
Solution
How it works
2-6 Filtering Mats
Problem
Solution
How it works
2-7 Applying Simple Masking Techniques
Problem
Solution
How it works
2-8 Blurring Images
Problem
Solution
How it works
Chapter 3: Imaging Techniques
3-1 Playing with Colors
Problem
Solution
How it works
3-2 Creating Cartoons
Problem
Solution
How it works
3-3 Creating Pencil Sketches
Problem
Solution
How it works
3-4 Creating a Canvas Effect
Problem Solution
How it works
3-5 Highlighting Lines and Circles
Problem Solution
How it works
3-6 Finding and Drawing Contours and Bounding Boxes
Problem
Solution
How it works
3-7 More on Contours: Playing with Shapes
Problem
Solution
How it works
3-8 Moving Shapes
Problem
Solution
How it works
3-9 Looking at Trees
Problem Solution
How it works
3-10 Detecting Blur
Problem
Solution
How it works
3-11 Making Photomosaics
Problem Solution
How it works
Chapter 4: Real-Time Video
4-1 Getting Started with Video Streaming
Problem
Solution
How it works
4-2 Combining Multiple Video Streams
Problem
Solution
How it works
4-3 Warping Video
Problem
Solution
How it works
4-4 Using Face Recognition
Problem
Solution
How it works
4-5 Dif ing with a Base Image
Problem
Solution
How it works
4-6 Finding Movement
Problem
Solution
How it works
4-7 Separating the Foreground from the Background Using Grabcut
Problem
Solution
How it works
4-8 Finding an Orange in Real Time
Problem
Solution
How it works
4-9 Finding an Image Within the Video Stream
Problem
Solution
How it works
Index
ABOUT THE AUTHOR AND ABOUT THE TECHNICAL REVIEWER
ABOUT THE AUTHOR
Nicolas Modrzyk
is currently Chief Technical Of icer of Karabiner Software and a leader of development teams.
He is also an active contributor to the open source software community. As a developer and technical consultant, Nico has been involved over many years in designing large-scale server applications for a video conferencing company, managing enormous clusters of databases through high-performance middleware developed from scratch, enabling Japanese leaders with content management and process management systems, and pushing the boundaries of business processes for leading Asian companies.
Nico is an ardent advocate of Agile methods and is focused on getting the job done right to satisfy clients. He also loves to push friends and team members to challenge themselves and reach their goals. He has lived by those empowering standards in various countries, including France, America, Ireland, Japan,
China, and India. Nico is also the author of a few other books on the Clojure programming language, in both English and Japanese.
He is currently based in Tokyo, Japan, where he is often found after hours playing soccer, hiking, performing live concerts with his guitar, and enjoying life with friends and colleagues.
ABOUT THE TECHNICAL REVIEWER
Aakash Kag is an AI developer at Manacola Private Ltd. He has two years of experience in big data analytics. He is a postgraduate in Computer Science with a specialization in Big Data Analytics. Aakash has also made contributions to the Microsoft bot builder.
Currently, Aakash is working on problems related to Conversational Bots and Natural Language Understanding.
He is passionate about Machine Learning meetups, where he often presents talks.
A few years ago, while on a trip to Shanghai, a very good friend of mine bought me a massive book on OpenCV. It had tons of photography manipulation, real–time video analysis samples, and in-depth explanations that were very appealing, and I just could not wait to get things up and running on my local environment.
OpenCV, as you may know, stands for Open Source Computer Vision ; it is an open source library that gives you ready-to-use implementations of advanced imaging algorithms, going from simple-to-use but advanced image manipulations to shape recognition and real-time video analysis spy powers.
The very core of OpenCV is a multidimensional matrix object named Mat. Mat is going to be our best friend all along this book. Input objects are Mat, operations are run on Mat, and the output of our work is also going to be Mat. 1
Mat , even though it is going to be our best friend, is a C++ object, and as such, is not the easiest of friends to bring and show around. You have to recompile, install, and be very gentle about the new environment almost anywhere you take him.
But Mat can be packaged.
Mat, even though he is a native (i.e., runs natively), can be dressed to run on the Java Virtual Machine almost without anyone noticing.
This irst chapter wants to get you introduced to work with OpenCV with some of the main languages of the Java Virtual Machine, namely Java of course, but also the easier-to-read Scala and the Google-hyped Kotlin.
To run all these different languages in a similar fashion, you will irst get (re-?)introduced to a Java build tool named leiningen and then you will move on to use simple OpenCV functions with it.
The road of this irst chapter will take you to the door of the similarly JVM-based language Clojure, which will give your OpenCV code instant visual feedback for great creativity. That will be for Chapter 2.
1.1 Getting Started with Leiningen PROBLEM
You remember the write-once-run-everywhere quote, and you would like to compile Java code and run the Java program in an easy and portable manner across different machines. Obviously, you can always revert to using the plain javac command to compile Java code, and pure Java on the command line to run your compiled code , but we are in the 21 century, and hey, you are looking for something more.
Whatever the programming language, setting up your working environment by hand is quite a task, and when you are done, it is hard to share with other people.
Using a build tool, you can de ine in simple ways what is required to work on your project, and get other users to get started quickly.
You would like to get started with an easy-to-work-with build tool.
SOLUTION
Leiningen is a build tool targeting (mostly) the JavaVM. It is similar in that sense to other famous ones like (Remember? The) Ant, (Oh My God) Maven, and (it used to work) Gradle.
Once the leiningen command is installed, you can use it to create new JavaVM projects based on templates, and run them without the usual headaches.
This recipe shows how to install Leiningen quickly and run your irst Java program with it.
HOW IT WORKS
You will start by simply installing Leiningen where you need it, and then creating a blank Java project with it.
NOTE Installing Leiningen requires Java 8 to be installed on your machine. Note also that due to the fact that Java 9 is solving old problems by breaking current solutions, we will choose to keep Java 8 for now.
InstallingLeiningen
The Leiningen web site itself is hosted and can be found at https://leiningen.org/
At the top of the Leiningen page, you can ind the four easy steps to install the tool manually yourself. So here it goes, on macOS and Unix :
2 . Place it on your C:/Windows/System32 folder, using admin permission
3 . Open a command prompt and run it, lein, and it will download the self-install package
On Unix , you can almost always use a package manager. Brew, on macOS, has a package for leiningen.
On Windows , there is also a good Windows installer, located at https://djpowell.github.io/leiningenwin-installer/ .
If you are a Chocolatey fan, Windows has a package for Chocolatey as well: https://chocolatey.org/packages/Lein .
If you inished the install process successfully on a terminal or command prompt, you should be able to check the version of the installed tool. On the irst run, Leiningen downloads its own internal dependencies, but any other subsequent runs will regularly be fast.
NikoMacBook% lein -v
Leiningen 2.7.1 on Java 1.8.0 144 Java HotSpot(TM) 64Bit Server VM
Leiningen mainly works around a text ile, named project.clj , where the metadata, dependencies, plug-ins, and settings for those projects are de ined in a simple map.
When you execute commands on the project calling the lein command, lein will look into that project.clj to ind the relevant information it needs regarding that project.
Leiningen comes with ready-to-use project templates, but in order to understand them properly, let’s irst walk through a irst example step by step.
For a leiningen Java project, you need two iles:
One that describes the project, project clj
One ile with some Java code in it, here Hello.java
A irst project simple directory structure looks like this: . ├ java │ └ Hello.java └ project.clj
1 directory, 2 files
For peace of mind, we will keep the code of this irst Java example pretty simple.
public class Hello { public static void main(String[] args) { System.out.println("beginning of a journey"); } }
Now let’s see the content of the text ile named project.clj in a bit of detail:
This is actually Clojure code, but let’s simply think of it as a domain speci ic language (DSL), a language to describe a project in simple terms.
For convenience, each term is described in Table 1-1.
Table 1-1 Leiningen Project Metadata
Word Usage
Defproject
Entry point to de ine a project
Hellojava The name of the project
0.1 A string describing the version
:java-sourcepaths
:dependencies
[[org clojure/cl ojure “1 8 0”]]
:main
A list of directories relative to the project folder, where you will put Java code iles
The list of external libraries and their versions needed to run the project
By default, the list contains Clojure, which is needed to run leiningen You will put OpenCV libraries here later on
The name of the Java class that will be executed by default
Now go ahead and create the preceding directory and ile structure, and copy-paste the content of each ile accordingly.
Once done, run your irst leiningen command: lein run
The command will generate the following output on your terminal or console depending on your environment.
Compiling 1 source files to /Users/niko/hellojava/target/classes beginning of a journey
Whoo-hoo! The journey has begun! But, wait, what happened just there?
A bit of magic was involved. The leiningen run command will make Leiningen execute a compiled Java class main method. The class to be executed was de ined in the project’s metadata, and as you remember, that would be Hello.
Before executing the Java compiled class there is a need to… compile it. By default, Leiningen does compilation before performing the run command, and so this is where the “Compiling … ” message came out from.
Along the way, you may have noticed that a target folder was created inside your project folder, with a classes folder, and a Hello.class ile inside.
The target/classes folder is where the compiled Java bytecode goes by default, and that same target folder is then added to the Java execution runtime (classpath).
The execute phase triggered by “lein run ” follows, and the code block from the main method of the Hello class is executed; then the message prints out.
beginning of a journey.
You may ask: “What if I have multiple Java iles, and want to run a different one than the main one?”
This is a very valid question, as you will be probably doing that a few times in this irst chapter to write and run the different code samples.
Say you write a second Java class in a ile named Hello2.java in the same Java folder, along with some updated journey content.
import static java.lang.System.out; public class Hello2 { public static void main(String[] args) { String[] text = new String[]{ "Sometimes it's the journey that " , "teaches you a lot about your destination.", " -" , " - Drake"}; for(String t : text) out.println(t); } }
To run that exact main method from the Hello2.java ile , you would call lein run with the optional –m option, where m stands for main, and then the name of the main Java class to use.
lein run –m Hello2
This gives you the following output:
Compiling 1 source files to /Users/niko/hellojava/target/classes Sometimes it's the journey that
teaches you a lot about your destination.
--
- Drake
Great. With those instructions, you now know enough to go ahead and run your irst OpenCV Java program.
1.2
Writing Your First OpenCV Java Program
PROBLEM
You would like to use Leiningen to have a Java project setup where you can use OpenCV libraries directly. You would like to run Java code making use of OpenCV, but you got headaches already (while compiling the opencv wrapper yourself), so you would like to make this step as simple as possible.
SOLUTION
Recipe 1-1 presented Leiningen to help you with all the basic required setup. From there, you can add a dependency on the OpenCV C++ library and its Java wrapper.
HOW IT WORKS
For this irst OpenCV example, we will get set up with a Leiningen project template , where the project.clj ile and the project folders are already de ined for you. Leiningen project templates do not have to be downloaded separately and can be called upon to create new projects using Leiningen’s integrated new command. To create this project on your local machine, on the command line , let’s call the command of lein. Whether on Windows or Mac, the command gives
lein new jvm-opencv hellocv
What the preceding command basically does is
1 . create a new project folder named hellocv
2 . create directories and iles with the content of the folder based on a template named jvm-opencv
After running the command, the rather simple following project iles are created: . ├ java │ └ HelloCv.java └ project.clj
That does not seem too impressive, but actually those are almost the same as the two iles from the previous recipe: a project descriptor and a Java ile.
The project.clj content is a slightly modi ied version from before:
You probably have noticed straightaway three new lines you have not seen before.
First of all is the repositories section, which indicates a new repository location to ind dependencies. The one provided
Another random document with no related content on Scribd:
MASTERPIECES OF DETECTIVE LITERATURE
ALL BOOKS COPYRIGHTED
NEW MAGNET LIBRARY
A New Book Issued Every Week in This Line
Our efforts to fill the enormous demand for scientific detective literature at a reasonable price have been unceasing for the past eight years. Any one who looks over the titles in the New Magnet Library can hardly doubt that we have succeeded splendidly in giving American readers the kind of mystery stories that is usually found between cloth covers at $1.50. The price at which these books are sold seems very insignificant in comparison to the amount and quality of reading. Our watchword in connection with this line is “never be content,” and it will be our earnest endeavor to not only maintain the high standard of excellence that prevails in the stories that we have published, but to improve upon it. Every lover of detective stories will rejoice in having this line brought to his attention because it will place within his reach just the sort of literature that he has been seeking.
ALL TITLES ALWAYS IN PRINT
TO THE PUBLIC:—These books are sold by news dealers everywhere. If your dealer does not keep them, and will not get them for you, send direct to the publishers, in which case four cents must be added to the price per copy to cover postage.
73 —Two Plus Two By Nicholas Carter
75
77
79
Van Alstine Case By Nicholas Cartel
Sign of the Crossed Knives By Nicholas Carter
81 —Wanted by Two Clients By Nicholas Carter 83
85
Crescent Brotherhood By Nicholas Carter
Dead Man’s Grip By Nicholas Carter
147 —Nick Carter’s Retainer By Nicholas Carter
150 —Lady Velvet By Nicholas Carter
153 —Nick Carter’s Clever Ruse By Nicholas Carter
156 —A Victim of Circumstances By Nicholas Carter
159 —A Framework of Fate By Nicholas Carter
162 —Nick Carter’s Star Pupils By Nicholas Carter
165 —Held for Trial By Nicholas Carter
168 —Brought to Bay By Nicholas Carter
171 —The Silent Passenger By Nicholas Carter
174 —A Princess of Crime By Nicholas Carter
177 —A Scrap of Black Lace By Nicholas Carter
182 —The Bottle with the Black Label By Nicholas Carter
186 —A Desperate Chance By Nicholas Carter
189 —The Man of Mystery By Nicholas Carter
191 —The Murray Hill Mystery By Nicholas Carter
TRANSCRIBER’S NOTES:
Obvious typographical errors have been corrected. Inconsistencies in hyphenation have been standardized.
Archaic or variant spelling has been retained.
*** END OF THE PROJECT GUTENBERG EBOOK TOYING WITH FATE; OR, NICK CARTER'S NARROW SHAVE ***
Updated editions will replace the previous one—the old editions will be renamed.
Creating the works from print editions not protected by U.S. copyright law means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for an eBook, except by following the terms of the trademark license, including paying royalties for use of the Project Gutenberg trademark. If you do not charge anything for copies of this eBook, complying with the trademark license is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. Project Gutenberg eBooks may be modified and printed and given away—you may do practically ANYTHING in the United States with eBooks not protected by U.S. copyright law. Redistribution is subject to the trademark license, especially commercial redistribution.
START: FULL LICENSE
THE FULL PROJECT GUTENBERG LICENSE
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
To protect the Project Gutenberg™ mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase “Project Gutenberg”), you agree to comply with all the terms of the Full Project Gutenberg™ License available with this file or online at www.gutenberg.org/license.
Section 1. General Terms of Use and Redistributing Project Gutenberg™ electronic works
1.A. By reading or using any part of this Project Gutenberg™ electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg™ electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg™ electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8.
1.B. “Project Gutenberg” is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg™ electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg™ electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg™ electronic works. See paragraph 1.E below.
1.C. The Project Gutenberg Literary Archive Foundation (“the Foundation” or PGLAF), owns a compilation copyright in the collection of Project Gutenberg™ electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is unprotected by copyright law in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg™ mission of promoting free access to electronic works by freely sharing Project Gutenberg™ works in compliance with the terms of this agreement for keeping the Project Gutenberg™ name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg™ License when you share it without charge with others.
1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg™ work. The Foundation makes no representations concerning the copyright status of any work in any country other than the United States.
1.E. Unless you have removed all references to Project Gutenberg:
1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg™ License must appear prominently whenever any copy of a Project Gutenberg™ work (any work on which the phrase “Project Gutenberg” appears, or with which the phrase “Project
Gutenberg” is associated) is accessed, displayed, performed, viewed, copied or distributed:
This eBook is for the use of anyone anywhere in the United States and most other parts of the world at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org. If you are not located in the United States, you will have to check the laws of the country where you are located before using this eBook.
1.E.2. If an individual Project Gutenberg™ electronic work is derived from texts not protected by U.S. copyright law (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase “Project Gutenberg” associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg™ trademark as set forth in paragraphs 1.E.8 or 1.E.9.
1.E.3. If an individual Project Gutenberg™ electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg™ License for all works posted with the permission of the copyright holder found at the beginning of this work.
1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg™.
1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg™ License.
1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg™ work in a format other than “Plain Vanilla ASCII” or other format used in the official version posted on the official Project Gutenberg™ website (www.gutenberg.org), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original “Plain Vanilla ASCII” or other form. Any alternate format must include the full Project Gutenberg™ License as specified in paragraph 1.E.1.
1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg™ works unless you comply with paragraph 1.E.8 or 1.E.9.
1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg™ electronic works provided that:
• You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg™ works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg™ trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive Foundation.”
• You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg™ License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg™ works.
• You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work.
• You comply with all other terms of this agreement for free distribution of Project Gutenberg™ works.
1.E.9. If you wish to charge a fee or distribute a Project Gutenberg™ electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from the Project Gutenberg Literary Archive Foundation, the manager of the Project Gutenberg™ trademark. Contact the Foundation as set forth in Section 3 below.
1.F.
1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread works not protected by U.S. copyright law in creating the Project Gutenberg™ collection. Despite these efforts, Project Gutenberg™ electronic works, and the medium on which they may be stored, may contain “Defects,” such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other
medium, a computer virus, or computer codes that damage or cannot be read by your equipment.
1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGESExcept for the “Right of Replacement or Refund” described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg™ trademark, and any other party distributing a Project Gutenberg™ electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH
1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.
1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem.
1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.
1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions.
1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg™ electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg™ electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg™ work, (b) alteration, modification, or additions or deletions to any Project Gutenberg™ work, and (c) any Defect you cause.
Section 2. Information about the Mission of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life.
Volunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project
Gutenberg™’s goals and ensuring that the Project Gutenberg™ collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg™ and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation information page at www.gutenberg.org.
Section 3. Information about the Project Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a nonprofit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation’s EIN or federal tax identification number is 64-6221541. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state’s laws.
The Foundation’s business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up to date contact information can be found at the Foundation’s website and official page at www.gutenberg.org/contact
Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation
Project Gutenberg™ depends upon and cannot survive without widespread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine-readable form
accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS.
The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit www.gutenberg.org/donate.
While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate.
International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff.
Please check the Project Gutenberg web pages for current donation methods and addresses. Donations are accepted in a number of other ways including checks, online payments and credit card donations. To donate, please visit: www.gutenberg.org/donate.
Section 5. General Information About Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project Gutenberg™ concept of a library of electronic works that could be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose network of volunteer support.
Project Gutenberg™ eBooks are often created from several printed editions, all of which are confirmed as not protected by copyright in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition.
Most people start at our website which has the main PG search facility: www.gutenberg.org.
This website includes information about Project Gutenberg™, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks.