Revision: 56351
          http://sourceforge.net/p/brlcad/code/56351
Author:   mohitdaga
Date:     2013-07-30 18:46:12 +0000 (Tue, 30 Jul 2013)
Log Message:
-----------
Add Doxygen comments for icv_filter and icv_filter3.

Modified Paths:
--------------
    brlcad/trunk/include/icv.h

Modified: brlcad/trunk/include/icv.h
===================================================================
--- brlcad/trunk/include/icv.h  2013-07-30 18:34:23 UTC (rev 56350)
+++ brlcad/trunk/include/icv.h  2013-07-30 18:46:12 UTC (rev 56351)
@@ -354,8 +354,26 @@
     ICV_FILTER_3_NULL
 }ICV_FILTER;
 
+/**
+ * Filters an image with the specified filter type. Basically convolves
+ * kernel with the image.
+ * Does zero_padding for outbound pixels.
+ *
+ * @param img Image to be filtered.
+ * @param filter_type Type of filter to be used.
+ *
+ */
 ICV_EXPORT extern int icv_filter(icv_image_t* img, ICV_FILTER filter_type);
 
+/**
+ * Filters a set of three image with the specified filter type.
+ * Does zero_padding for outbound pixels.
+ * Finds the resultant pixel with the help of neighbouring pixels in
+ * all the three images.
+ *
+ * @return Resultant image.
+ *
+ */
 ICV_EXPORT extern icv_image_t* icv_filter3(icv_image_t* old_img,
                                               icv_image_t* curr_img,
                                               icv_image_t* new_img,

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to