- Timestamp:
- Sep 3, 2008, 8:33:46 PM (15 years ago)
- Location:
- libpipi/trunk/pipi
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/pipi/Makefile.am
r2812 r2814 26 26 dither.c \ 27 27 measure.c \ 28 accessors.c \ 28 29 $(codec_sources) \ 29 30 $(paint_sources) \ -
libpipi/trunk/pipi/codec/opencv.c
r2772 r2814 35 35 { 36 36 pipi_image_t *img; 37 37 38 IplImage *priv = cvLoadImage(name, 1); 38 39 -
libpipi/trunk/pipi/paint/line.c
r2810 r2814 2 2 * libpipi Proper image processing implementation library 3 3 * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org> 4 * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org 4 * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org> 5 5 * All Rights Reserved 6 6 * -
libpipi/trunk/pipi/pipi.h
r2812 r2814 123 123 extern int pipi_get_image_height(pipi_image_t *img); 124 124 extern int pipi_get_image_pitch(pipi_image_t *img); 125 extern int pipi_get_image_last_modified(pipi_image_t *img); 126 extern const char* pipi_get_format_name(int format); 127 125 128 126 129 extern double pipi_measure_msd(pipi_image_t *, pipi_image_t *); -
libpipi/trunk/pipi/pixels.c
r2777 r2814 266 266 done = 1; 267 267 } 268 269 /* Accessors */270 int pipi_get_image_width(pipi_image_t *img)271 {272 return img->w;273 }274 int pipi_get_image_height(pipi_image_t *img)275 {276 return img->h;277 }278 int pipi_get_image_pitch(pipi_image_t *img)279 {280 return img->pitch;281 }
Note: See TracChangeset
for help on using the changeset viewer.