Hi,<div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I see that your patch changes the definition of a function in the C API<br>

(VRTAddComplexSource). Up to now, the GDAL C API has been set in stone. This<br>might change in GDAL 2.0 though, but I&#39;m going to start a specific thread on<br>this to have global feedback from the GDAL community.</blockquote>

<div>Yes, I understand. I hesitated a bit before changing the public interface but I had no choice except to add another function with another name and the same argument ...</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

But even if we are OK to change the C API, I begin to think that this<br>VRTAddComplexSource() function becomes ugly with so many parameters. Perhaps<br>we should add a char** papszOptions to provide additional options without<br>

breaking it each time. Or I&#39;m wondering if the C API is really the best option<br>for doing such complex things, and using the C++ API wouldn&#39;t be just better.</blockquote><div>I agree to change the VRTAddComplexSource() function to make it more simple. If you use C++ to do it, I think a decorator pattern can be useful to add fonctionnality to a VRT dataset.</div>
<div><br></div><div>But as I say, the main goal is to build VRT with LUT and filter. Maybe you can envisage it for the gdal 2.0 release?</div><div><br></div><div>Cheers.</div><div><br></div>
<div><br><br><div class="gmail_quote">2012/5/20 Even Rouault <span dir="ltr">&lt;<a href="mailto:even.rouault@mines-paris.org" target="_blank">even.rouault@mines-paris.org</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Le dimanche 20 mai 2012 16:07:07, Saâd HESSANE a écrit :<br>
<div>&gt; Hi Even,<br>
&gt;<br>
&gt; The main goal of this proposal is to built using &quot;gdalbuildvrt&quot; VRT files<br>
&gt; containing LUT or filters.<br>
&gt;<br>
&gt; The patch that I send allow build VRT with LUT by specifying the -lutin and<br>
&gt; -lutout parameters.<br>
&gt; Ex :<br>
&gt;   gdalbuildvrt -lutin &quot;0 1 2&quot; -lutout &quot;4 5 6&quot; test.vrt test.tif<br>
&gt;<br>
&gt; We can discuss the fact that define two parameters (-lutin and -lutout) or<br>
&gt; just one parameter (-lut &quot;0,4 1,5 2,6&quot;). This is not a problem.<br>
<br>
</div>Ah, your patch is more extensive than what I thought (I imagined only the<br>
SetLUT() function to be in it).<br>
<br>
I see that your patch changes the definition of a function in the C API<br>
(VRTAddComplexSource). Up to now, the GDAL C API has been set in stone. This<br>
might change in GDAL 2.0 though, but I&#39;m going to start a specific thread on<br>
this to have global feedback from the GDAL community.<br>
<br>
But even if we are OK to change the C API, I begin to think that this<br>
VRTAddComplexSource() function becomes ugly with so many parameters. Perhaps<br>
we should add a char** papszOptions to provide additional options without<br>
breaking it each time. Or I&#39;m wondering if the C API is really the best option<br>
for doing such complex things, and using the C++ API wouldn&#39;t be just better.<br>
<div><div><br>
&gt;<br>
&gt;<br>
&gt; 2012/5/19 Even Rouault &lt;<a href="mailto:even.rouault@mines-paris.org" target="_blank">even.rouault@mines-paris.org</a>&gt;<br>
&gt;<br>
&gt; &gt; Le samedi 19 mai 2012 18:58:05, Saâd HESSANE a écrit :<br>
&gt; &gt; &gt; Hi Even and thank you for the quick response.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; You should even not consider the VRTComplexSource class to be in the<br>
&gt; &gt;<br>
&gt; &gt; public<br>
&gt; &gt;<br>
&gt; &gt; &gt; &gt; API, so the visibility of its members is not significant. And playing<br>
&gt; &gt; &gt; &gt; with them<br>
&gt; &gt; &gt; &gt; from the outside isn&#39;t recommanded at all.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; The fact that you don&#39;t consider the class in the public API does not<br>
&gt; &gt; &gt; excuse the fact that this is a mistake encapsulation :)<br>
&gt; &gt;<br>
&gt; &gt; I agree the encapsulation isn&#39;t ideal, but unless I&#39;m wrong, this class<br>
&gt; &gt; is *not* in the public API. It is not marked as CPL_DLL exported, so on<br>
&gt; &gt; Windows,<br>
&gt; &gt; you should not be able to access it from the outside of the GDAL lib. On<br>
&gt; &gt; Unix/Linux, as, by default (unless GDAL is configured with<br>
&gt; &gt; --hide-internal- symbols), all symbols are exported, you can technically<br>
&gt; &gt; use it however.<br>
&gt; &gt;<br>
&gt; &gt; &gt; And apart from that, nothing prevents me to use a special driver to do<br>
&gt; &gt; &gt; specific things that are not directly provided by the public API.<br>
&gt; &gt; &gt; Currently I need to build a VRT, and the VRT driver are fine for that.<br>
&gt; &gt;<br>
&gt; &gt; It&#39;s<br>
&gt; &gt;<br>
&gt; &gt; &gt; dirrectly use in the gdalbuildvrt utility for example. If the VRT<br>
&gt; &gt; &gt; plugin<br>
&gt; &gt;<br>
&gt; &gt; is<br>
&gt; &gt;<br>
&gt; &gt; &gt; not safe to use, the solution is to correct it.<br>
&gt; &gt;<br>
&gt; &gt; There&#39;s always a trade off between exposing API and increasing<br>
&gt; &gt; maintenance burden. The more API you expose, the more difficult it is to<br>
&gt; &gt; make changes afterwards.<br>
&gt; &gt;<br>
&gt; &gt; &gt; To read a VRT file outside from gdal I need to parse an XML file, so I<br>
&gt; &gt;<br>
&gt; &gt; have<br>
&gt; &gt;<br>
&gt; &gt; &gt; to use another dependency (like xerces) to do just a small think.<br>
&gt; &gt;<br>
&gt; &gt; You don&#39;t need another dependency. You can use the CPL minixml API (see<br>
&gt; &gt; cpl_minixml.h) that is used by the VRT driver itself for example.<br>
&gt; &gt;<br>
&gt; &gt; &gt; Another argument is the VRTKernelFiltredSource. To set a kernel filtre<br>
&gt; &gt; &gt; we don&#39;t have to set the attributes nKernelSize, padfKernelCoefs and<br>
&gt; &gt; &gt; bNormalized, because we can&#39;t (the attributes are protected). But the<br>
&gt; &gt; &gt; API offers a setKernel that do exactly the same think that I hope the<br>
&gt; &gt; &gt; setLUT method do in the VRTComplexSource.<br>
&gt; &gt;<br>
&gt; &gt; If you can come with a patch, I&#39;ll consider including it, but I still<br>
&gt; &gt; believe<br>
&gt; &gt; you should not rely on that.<br>
</div></div></blockquote></div><br></div>