/usr/include/ITK-4.9/itkTemporalProcessObject.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkTemporalProcessObject_h
#define itkTemporalProcessObject_h
#include "itkProcessObject.h"
#include "itkTemporalRegion.h"
#include "ITKVideoCoreExport.h"
namespace itk
{
/** Forward declarations */
class Region;
class TemporalDataObject;
/** \class TemporalProcessObject
* \brief TemporalProcessObject implements a ProcessObject for the itk pipeline
* with the notion of a temporal region
*
* TemporalProcessObject acts as a pass-through in the inheritance tree in
* order to require that subclasses properly implement handeling of temporal
* regions. The key parameters of a temporal process object are:
*
* m_UnitInputNumberOfFrames
* m_UnitOutputNumberOfFrames
* m_FrameSkipPerOutput
* m_InputStencilCurrentFrameIndex
*
* These parameters are protected by default so that the filter writer can
* choose which to expose and which to keep constant. For a full explanation of
* each parameter, see the individual comments with their declarations.
* Subclasses of TemporalProcessObject must implement one of the following:
*
* GenerateData()
* TemporalStreamingGenerateData()
*
* By default, GenerateData will split the requested temporal region of the
* input and output temporal data objects into sub-requests of unit input and
* unit output size. For example, if the output requests 3 frames and the
* filter has unit input size of 2 and unit output size of 1, GenerateData will
* produce 3 sub-requests that each require the input to provide 2 frames.
* Using this default behavior, TemporalStreamingGenerateData must be
* implemented and can assume that the RequestedTemporalRegion on the input and
* output are unit size. If the temporal streaming behavior is not desired,
* GenerateData can be implemented to directly handle the full output requested
* temporal region in a single pass.
*
* \ingroup ITKVideoCore
*/
class ITKVideoCore_EXPORT TemporalProcessObject : public ProcessObject
{
public:
/*-TYPEDEFS----------------------------------------------------------------*/
/** Standard class typedefs */
typedef TemporalProcessObject Self;
typedef ProcessObject Superclass;
typedef SmartPointer< Self > Pointer;
typedef SmartPointer< const Self > ConstPointer;
/** Run-time type information (and related methods). */
itkTypeMacro(TemporalProcessObject, ProcessObject);
/*-PUBLIC METHODS----------------------------------------------------------*/
/** Override EnlargeOutputRequestedRegion, GenerateOutputRequestedRegion, and
* GenerateInputRequestedRegion to handle temporal regions */
virtual void EnlargeOutputRequestedRegion(DataObject* output) ITK_OVERRIDE;
virtual void GenerateOutputRequestedRegion(DataObject* output) ITK_OVERRIDE;
virtual void GenerateInputRequestedRegion() ITK_OVERRIDE;
/** Get the number of frames of input required to produce output. We don't
* provide a Set method because we want some filters to be able to hold this
* as a constant. */
itkGetMacro(UnitInputNumberOfFrames, SizeValueType);
/** Get the number of frames of output produced for a single set of input
* frames. We don't provide a Set method because we want some filters to be
* able to hold this as a constant. */
itkGetMacro(UnitOutputNumberOfFrames, SizeValueType);
/** The default implementation of UpdateOutputInformation to handle temporal
* regions will compute the proper size of the output largest possible
* temporal region based on the largest possible temporal region of the input,
* the unit input/output sizes for the process, and the number of frames
* skipped per output*/
virtual void UpdateOutputInformation() ITK_OVERRIDE;
/** Override ProcessObject's implementation of UpdateOutputData. This is
* necessary because by default ProcessObject propagates the call to its
* inputs before calling GenerateData. This doesn't work here because we need
* to adjust the requested temporal region of our inputs before calling their
* UpdateOutputData methods
*
* NOTE: Subclasses that don't use the temporal streaming process must
* override this function to call the version implemented in ProcessObject
*
* Code: this->ProcessObject::UpdateOutputData( output )
*/
virtual void UpdateOutputData(DataObject* output) ITK_OVERRIDE;
/** Override GenerateData to do temporal region streaming. This is analogous
* to the ThreadedGenerateData system implemented in ImageSource, but it
* functions slightly differently. Since most temporal processes are going to
* to need more input frames than they produce output frames for a single
* operation, we cannot use the same model as spatial streaming which assumes
* that the input requested region is fully populated before producing any
* output. Instead, once we have split the requested output region, we reset
* the requested temporal region of the input to each input requested
* temporal sub-region (in sequence) and re-propagate the temporal region
* request up the pipeline. */
virtual void GenerateData() ITK_OVERRIDE;
/** TemporalStreamingGenerateData is in charge of producing output for a
* single portion of the output requested temporal region. This is where
* the body of the process will take place. Subclasses that handle spatial
* data (such as video frames) may instead use this function to split the
* requested spatial region and process the spatial sub-regions using the
* mechanism implemented in ImageBase for multithreading. */
virtual void TemporalStreamingGenerateData();
protected:
/*-PROTECTED METHODS-------------------------------------------------------*/
/** Constructor that initializes members */
TemporalProcessObject();
/** Empty Destructor */
virtual ~TemporalProcessObject(){
}
/** ITK print mechanism */
virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
/** Explicitly handle temporal regions in EnlargeRequestedRegion. The default
* implementation makes sure that the output requested temporal region is
* contained in the buffered temporal region or has a duration that is a
* multiple of the unit output number of frames */
virtual void EnlargeOutputRequestedTemporalRegion(TemporalDataObject* output);
/** Explicitly handle temporal regions in GeneratOutputRegion. The default
* implementation checks to see if a request is currently set and if not, it
* sets the requested temporal region to match the largest possible temporal
* region
*
* Note: If the largest possible temporal duration has infinite duration, the
* requested temporal region will be set to have duration 1. */
virtual void GenerateOutputRequestedTemporalRegion(TemporalDataObject* output);
/** Explicitly handle temporal regions in GenerateInputRequestedRegion. The
* default implementation sets the requested temporal region on the input to
* start at m_FrameSkipPerOutput times the start frame of the requested output
* temporal region with the duration needed to produce the entire requested
* output.
*
* NOTE: This default propagation will be overwritten during the
* UpdateOutputData phase by the temporal streaming mechanism if a subclass
* implements TemporalStreamingGenerateData, but this propagation is provided
* so that subclasses which directly implement GenerateData will work
* correctly. */
virtual void GenerateInputRequestedTemporalRegion();
/** Split the output's RequestedTemporalRegion into the proper number of
* sub-regions. By default it is assumed that each sub-region processed
* should be generated using the set of input frames starting one frame
* forward in time from the previous sub-region. To change this, set
* FrameSkipPerOutput to something other than 1. Positive indicates forward
* in time while negative indicates backward in time.
* The set of returned TemporalRegion objects is the set of temporal regions
* that are needed as input to generate the entire output requested region */
virtual std::vector<TemporalRegion> SplitRequestedTemporalRegion();
/** Method that gets called by GenerateData before
* TemporalStreamingGenerateData. Subclasses can override this method to
* provide pre-processing for the data before splitting up the requested
* output temporal region. */
virtual void BeforeTemporalStreamingGenerateData() {
}
/** Method that gets called by GenerateData after
* TemporalStreamingGenerateData. Subclasses can override this method to
* provide post-processing for the data after producing the requested output
* temporal region. */
virtual void AfterTemporalStreamingGenerateData() {
}
/** Generate a default LargestPossibleRegion. This is used by temporal
* process objects that have no input. The default implementation starts at
* frame 0 and has infinite duration. */
virtual TemporalRegion GenerateDefaultLargestPossibleTemporalRegion();
itkSetMacro(UnitInputNumberOfFrames, SizeValueType);
itkSetMacro(UnitOutputNumberOfFrames, SizeValueType);
itkSetMacro(FrameSkipPerOutput, OffsetValueType);
itkSetMacro(InputStencilCurrentFrameIndex, SizeValueType);
itkGetMacro(InputStencilCurrentFrameIndex, SizeValueType);
/*-PROTECTED MEMBERS-------------------------------------------------------*/
/** Members to indicate the number of input frames and output frames required
* to perform a single pass through the processing. */
SizeValueType m_UnitInputNumberOfFrames;
SizeValueType m_UnitOutputNumberOfFrames;
/** Number of frames to move in order to produce each set of output frames.
* There is no public API for this member, but subclasses can set it
* internally (or provide access to it) if they wish. */
OffsetValueType m_FrameSkipPerOutput;
/** Member to indicate the location of the "current frame" in the minimum set
* of input frames. For example, if the unit number of input frames is 6 and
* m_InputStencilCurrentFrameIndex = 4, this indicates that for output frame
* n, frames n-4 through n+1 are required, whereas if
* m_InputStencilCurrentFrameIndex = 0, frames n through n+5 are required. */
SizeValueType m_InputStencilCurrentFrameIndex;
private:
TemporalProcessObject(const Self &) ITK_DELETE_FUNCTION;
void operator=(const Self &) ITK_DELETE_FUNCTION;
}; // end class TemporalProcessObject
} // end namespace itk
#endif
|