DGtal 1.3.0
Loading...
Searching...
No Matches
Functions
testPNMRawWriter.cpp File Reference
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/kernel/SpaceND.h"
#include "DGtal/kernel/domains/HyperRectDomain.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/io/colormaps/GrayscaleColorMap.h"
#include "DGtal/io/colormaps/HueShadeColorMap.h"
#include "DGtal/io/colormaps/GradientColorMap.h"
#include "DGtal/io/colormaps/ColorBrightnessColorMap.h"
#include "DGtal/io/colormaps/RandomColorMap.h"
#include "DGtal/io/colormaps/BasicColorToScalarFunctors.h"
#include "DGtal/base/BasicFunctors.h"
#include "DGtal/io/writers/PGMWriter.h"
#include "DGtal/io/writers/PPMWriter.h"
#include "DGtal/io/readers/PGMReader.h"
#include "DGtal/io/writers/RawWriter.h"
#include "DGtal/io/boards/Board2D.h"

Go to the source code of this file.

Functions

bool testPNMWriter ()
 
bool testRWIssue254 ()
 
int main (int argc, char **argv)
 

Detailed Description

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Author
David Coeurjolly (david.nosp@m..coe.nosp@m.urjol.nosp@m.ly@l.nosp@m.iris..nosp@m.cnrs.nosp@m..fr ) Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
Date
2010/07/22

Functions for testing class PNMWriter.

This file is part of the DGtal library.

Definition in file testPNMRawWriter.cpp.

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 157 of file testPNMRawWriter.cpp.

158{
159 trace.beginBlock ( "Testing class PNMWriter" );
160 trace.info() << "Args:";
161 for ( int i = 0; i < argc; ++i )
162 trace.info() << " " << argv[ i ];
163 trace.info() << std::endl;
164
165 bool res = testPNMWriter() && testRWIssue254(); // && ... other tests
166 trace.emphase() << ( res ? "Passed." : "Error." ) << std::endl;
167 trace.endBlock();
168 return res ? 0 : 1;
169}
void beginBlock(const std::string &keyword="")
std::ostream & emphase()
std::ostream & info()
double endBlock()
Trace trace
Definition: Common.h:154
bool testPNMWriter()
bool testRWIssue254()

References DGtal::Trace::beginBlock(), DGtal::Trace::emphase(), DGtal::Trace::endBlock(), DGtal::Trace::info(), testPNMWriter(), testRWIssue254(), and DGtal::trace.

◆ testPNMWriter()

bool testPNMWriter ( )

Example of a test. To be completed.

Definition at line 60 of file testPNMRawWriter.cpp.

61{
62
63 trace.beginBlock ( "Testing block ..." );
64
65 typedef SpaceND<2> TSpace;
66 typedef TSpace::Point Point;
69 typedef HueShadeColorMap<unsigned char,2> HueTwice;
71 // Gradient using the "Jet" preset.
73 // Gradient from black to red.
74 const int BlackColor = DGTAL_RGB2INT(0,0,0);
75 const int RedColor = DGTAL_RGB2INT(255,0,0);
77 // Gradient from black to red, using a ColorBrightnessColorMap.
79
80 Point a ( 1, 1);
81 Point b ( 16, 16);
83 Image image(Domain(a,b));
84 for(unsigned int i=0 ; i < 256; i++)
85 image[i] = i;
86
87 PPMWriter<Image,Hue>::exportPPM("export-hue.ppm",image, Hue(0,255) );
88 PPMWriter<Image,HueTwice>::exportPPM("export-hue-twice.ppm",image,HueTwice(0,255));
89 PGMWriter<Image>::exportPGM("export-hue-twice.pgm",image);
90 PPMWriter<Image,Gray>::exportPPM("export-gray.ppm",image, Gray(0,255));
91 PPMWriter<Image,Jet>::exportPPM("export-jet.ppm",image,Jet(0,255));
92 PPMWriter<Image,RedShade1>::exportPPM("export-red1.ppm",image,RedShade1(0,255));
93 PPMWriter<Image,RedShade2>::exportPPM("export-red2.ppm",image,RedShade2(0,255));
94
95 //TestingFunctor
97 Jet jf( 0, 255 );
99 RedFunctor redFunctor( jf, rf );
100 PGMWriter<Image, RedFunctor>::exportPGM("export-jet-red.pgm", image, redFunctor);
101
102 //test Raw export
103 RawWriter<Image>::exportRaw8("export-hue-twice.raw",image);
104
105 //test Image export with libboard
106 Board2D board;
108 Display2DFactory::drawImage<HueTwice>(board, image, (unsigned char)0, (unsigned char)255);
109 board.saveSVG("export-hue-twice.svg");
110
111 trace.endBlock();
112
113 return true;
114}
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
Definition: Board2D.h:71
Aim: This class template may be used to (linearly) convert scalar values in a given range into a colo...
Aim: This class template may be used to (linearly) convert scalar values in a given range into a colo...
Aim: This class template may be used to (linearly) convert scalar values in a given range into gray l...
Aim: This class template may be used to (linearly) convert scalar values in a given range into a colo...
Aim: Parallelepidec region of a digital space, model of a 'CDomain'.
Aim: implements association bewteen points lying in a digital domain and values.
Definition: Image.h:70
Aim: Define a new Functor from the composition of two other functors.
void saveSVG(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
Definition: Board.cpp:1012
void setUnit(Unit unit)
Definition: Board.cpp:240
static bool exportPGM(const std::string &filename, const Image &aImage, const Functor &aFunctor=Functor(), bool saveASCII=false, bool topbotomOrder=true)
static bool exportPPM(const std::string &filename, const Image &aImage, const Functor &aFunctor=Functor(), bool topbottomOrder=true)
static bool exportRaw8(const std::string &filename, const Image &anImage, const Functor &aFunctor=Functor())
MyPointD Point
Definition: testClone2.cpp:383
HyperRectDomain< Space > Domain

References DGtal::Trace::beginBlock(), DGtal::Trace::endBlock(), DGtal::PGMWriter< TImage, TFunctor >::exportPGM(), DGtal::PPMWriter< TImage, TFunctor >::exportPPM(), DGtal::RawWriter< TImage, TFunctor >::exportRaw8(), LibBoard::Board::saveSVG(), LibBoard::Board::setUnit(), DGtal::trace, and LibBoard::Board::UCentimeter.

Referenced by main().

◆ testRWIssue254()

bool testRWIssue254 ( )

Definition at line 117 of file testPNMRawWriter.cpp.

118{
119 trace.beginBlock ( "Testing R/W on PPM Writer (issue 254) ..." );
120
121 typedef SpaceND<2> TSpace;
122 typedef TSpace::Point Point;
124
125 Point a ( 0, 0);
126 Point b ( 15, 15);
128 Domain domain(a,b);
129 Image image(domain);
130 for(unsigned int i=0 ; i < 256; i++)
131 image[i] = i;
132
133 PGMWriter<Image>::exportPGM("export-gray-first.pgm",image);
134
135 Image imageRead = PGMReader<Image>::importPGM("export-gray-first.pgm");
136
137 PGMWriter<Image>::exportPGM("export-gray-second.pgm",imageRead);
138
139 trace.info() << image<<std::endl;
140 trace.info() << imageRead<<std::endl;
141
142
143 bool ok = true;
144 for(Image::Domain::ConstIterator it = image.domain().begin(),
145 itend = image.domain().end();
146 it != itend;
147 ++it)
148 ok = (image(*it) == imageRead(*it));
149
150 trace.endBlock();
151 return ok;
152}
static ImageContainer importPGM(const std::string &aFilename, const Functor &aFunctor=Functor(), bool topbotomOrder=true)
Domain domain

References DGtal::Trace::beginBlock(), domain, DGtal::Trace::endBlock(), DGtal::PGMWriter< TImage, TFunctor >::exportPGM(), DGtal::PGMReader< TImageContainer, TFunctor >::importPGM(), DGtal::Trace::info(), and DGtal::trace.

Referenced by main().