oops
This commit is contained in:
parent
5d912fdbbb
commit
367819b5cc
14
TODO
14
TODO
@ -5,7 +5,19 @@
|
|||||||
|
|
||||||
- need to add [] overload to Ruby bindings
|
- need to add [] overload to Ruby bindings
|
||||||
|
|
||||||
- overload (x, y) to be getpoint()?
|
- add
|
||||||
|
|
||||||
|
VImage &operator[]( int index )
|
||||||
|
throw( VError )
|
||||||
|
{
|
||||||
|
VImage result = this->extract_band( index );
|
||||||
|
|
||||||
|
return( result );
|
||||||
|
}
|
||||||
|
|
||||||
|
to cpp bindings
|
||||||
|
|
||||||
|
- overload (x, y) to be getpoint()? c++/py/rb
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1263,12 +1263,6 @@ public:
|
|||||||
return( a * -1 );
|
return( a * -1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
friend VImage operator[]( VImage a, int index )
|
|
||||||
throw( VError )
|
|
||||||
{
|
|
||||||
return( a.extract_band( index ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
VIPS_NAMESPACE_END
|
VIPS_NAMESPACE_END
|
||||||
|
Loading…
Reference in New Issue
Block a user