Nuke binary plugins 16.0.1
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
DD::Image::Info2D Class Reference

#include <Info2D.h>

Inheritance diagram for DD::Image::Info2D:
DD::Image::GeneralInfo DD::Image::Box DD::Image::DeepInfo DD::Image::IopInfo

Public Types

enum  AccessPreference { eAccessPreferNone , eAccessPreferLinear }
 
- Public Types inherited from DD::Image::Box
typedef iterator const_iterator
 

Public Member Functions

 Info2D ()
 
void setFormats (const FormatPair &formats)
 
FormatPair formats () const
 
const Formatformat () const
 
void format (const Format &v)
 
const Formatfull_size_format () const
 
void full_size_format (const Format &v)
 
const DD::Image::Boxbox () const
 
DD::Image::Boxbox ()
 
void setBox (const DD::Image::Box &box)
 
int ydirection () const
 
void ydirection (int v)
 
void setAccessPreference (AccessPreference ap)
 
const AccessPreference & accessPreference () const
 
- Public Member Functions inherited from DD::Image::GeneralInfo
int firstFrame () const
 get the first frame in the range
 
int first_frame () const
 get the first frame in the range
 
int lastFrame () const
 get the last frame in the range
 
int last_frame () const
 get the last frame in the range
 
void setFirstFrame (int v)
 set the first frame in the range
 
void setLastFrame (int v)
 set the last frame in the range
 
void first_frame (int v)
 set the first frame in the range
 
void last_frame (int v)
 set the last frame in the range
 
void setFrameRange (FrameRange frameRange)
 
- Public Member Functions inherited from DD::Image::Box
iterator begin () const
 
iterator end () const
 
 Box (int x, int y, int r, int t)
 
 Box (const Box &b)
 
int x () const
 
void x (int v)
 
int y () const
 
void y (int v)
 
int r () const
 
void r (int v)
 
int t () const
 
void t (int v)
 
int w () const
 
void w (int v)
 
int h () const
 
void h (int v)
 
float center_x () const
 
float center_y () const
 
void set (int x, int y, int r, int t)
 
void set (const Box &b)
 
bool is_constant () const
 
void clear ()
 
void move (int dx, int dy)
 
void pad (int dx, int dy, int dr, int dt)
 
void pad (int dx, int dy)
 
void pad (int d)
 
int clampx (int x) const
 
int clampy (int y) const
 
void merge (const Box &)
 
void merge (int x, int y)
 
void merge (int x, int y, int r, int t)
 
void expand (int amount)
 
void expand (int widthAmount, int heightAmount)
 
void scale (float scaleAmount)
 
void intersect (const Box &)
 
void intersect (int x, int y, int r, int t)
 
bool intersects (const Box &other) const
 
bool intersects (int x, int y, int r, int t) const
 
bool contains (const Box &other) const
 
int64_t area () const
 

Detailed Description

This structure contains some of the information that Iop::_validate() and DeepOp::_validate() must calculate. Because this information is often copied unchanged or with tiny variations from the input operator, it is put into this structure so that it can be copied with a single assignment.

This is a subclass of Box and that provides x,y,r,t values that describe the bounding box around all the interesting pixels (that is, the region of definition). It also provides a merge and intersect operators that are useful when _validate is combining the info from two inputs.

Constructor & Destructor Documentation

◆ Info2D()

DD::Image::Info2D::Info2D ( )

constructor

Member Function Documentation

◆ format()

void DD::Image::Info2D::format ( const Format f)
inline

Sets info_.format() to the given format. Some operators expect this to tell them how to size their output. Most operators will overwrite this in their _validate() method.

◆ full_size_format() [1/2]

const Format & DD::Image::Info2D::full_size_format ( ) const
inline

If the output of this operator is a proxy for a full size image, this is the full size. Nuke assumes all coordinates are given in the full size and scales them to the format() when storing them into the knob locations. Because Nuke does the scaling most operators can ignore this, it is occasionally useful for undoing the scaling to get the user's original numbers.

If this is not a proxy then this should point at the same location as format().

Referenced by DD::Image::Read::_validate(), DD::Image::Black::Black(), DD::Image::Reader::full_size_format(), DD::Image::Iop::Iop(), DD::Image::operator<<(), and DD::Image::Reader::Reader().

◆ full_size_format() [2/2]

void DD::Image::Info2D::full_size_format ( const Format f)
inline

Sets info_.full_size_format() to the given format. Some operators expect this to tell them how to size their output. Most operators will overwrite this in their _validate() method.

◆ ydirection()

int DD::Image::Info2D::ydirection ( ) const
inline

Indicates a preferred direction to ask for the lines in. Some operators (ie file readers) can produce the lines in one direction much faster, usually because reading line N requires reading all lines from 0..N-1 first. Thus if you go by increasing N the first line is returned immediately, but if you go backwards there is a long delay before the first line is produced. Notice that positive means "up" as line 0 is at the bottom.

Larger numbers indicate how "bad" it is. For sgi files it uses +/- 1 because reading in the wrong direction just means it will do seek() between each line. For jpeg it is -100 because it has to decode all lines above line N.

If your operator flips the picture upsidedown it should negate the y direction, otherwise leave it unchanged. If it reads from several inputs it should add all the ydirections together.

Referenced by DD::Image::Read::_validate(), DD::Image::Transform::_validate(), DD::Image::Iop::copy_info(), DD::Image::Iop::merge_info(), and DD::Image::Reader::Reader().

◆ accessPreference()

AccessPreference & DD::Image::Info2D::accessPreference ( ) const
inline

Indicates a preferred access pattern to ask for the lines in. Some operators operate full frame and prefer to be asked for lines from the very top of the request area rather than in the middle.

Operators can call Info2D::setAccessPreference to set their access preference. eAccessPreferLinear will cause the viewer to ask for lines always from the top or bottom of the request area first, ignoring any user mouse click.

The default is eAccessPreferNone, indicating this operator has no access preference.

Referenced by DD::Image::Iop::merge_info().



©2025 The Foundry Visionmongers, Ltd. All Rights Reserved.
www.foundry.com