Home
last modified time | relevance | path

Searched refs:Orientation (Results 1 – 25 of 88) sorted by relevance

1234

/external/image_io/includes/image_io/base/
Dimage_metadata.h12 enum class Orientation { enum
27 return value <= static_cast<UInt32>(Orientation::kRotate270); in IsLegalOrientation()
33 inline bool HasVerticalRotation(Orientation value) { in HasVerticalRotation()
34 return value == Orientation::kMirrorRotate90 || in HasVerticalRotation()
35 value == Orientation::kMirrorRotate270 || in HasVerticalRotation()
36 value == Orientation::kRotate90 || value == Orientation::kRotate270; in HasVerticalRotation()
55 orientation_ = Orientation::kNone; in Clear()
59 void SetOrientation(Orientation orientation) { orientation_ = orientation; } in SetOrientation()
86 bool HasOrientation() const { return orientation_ != Orientation::kNone; } in HasOrientation()
89 Orientation GetOrientation() const { return orientation_; } in GetOrientation()
[all …]
/external/tflite-support/tensorflow_lite_support/java/src/native/task/vision/
Djni_utils.cc56 FrameBuffer::Orientation ConvertToFrameBufferOrientation(JNIEnv* env, in ConvertToFrameBufferOrientation()
60 return FrameBuffer::Orientation::kTopLeft; in ConvertToFrameBufferOrientation()
62 return FrameBuffer::Orientation::kTopRight; in ConvertToFrameBufferOrientation()
64 return FrameBuffer::Orientation::kBottomRight; in ConvertToFrameBufferOrientation()
66 return FrameBuffer::Orientation::kBottomLeft; in ConvertToFrameBufferOrientation()
68 return FrameBuffer::Orientation::kLeftTop; in ConvertToFrameBufferOrientation()
70 return FrameBuffer::Orientation::kRightTop; in ConvertToFrameBufferOrientation()
72 return FrameBuffer::Orientation::kRightBottom; in ConvertToFrameBufferOrientation()
74 return FrameBuffer::Orientation::kLeftBottom; in ConvertToFrameBufferOrientation()
80 return FrameBuffer::Orientation::kTopLeft; in ConvertToFrameBufferOrientation()
Djni_utils.h31 FrameBuffer::Orientation ConvertToFrameBufferOrientation(JNIEnv* env,
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_utils.h42 FrameBuffer::Orientation from_orientation,
43 FrameBuffer::Orientation to_orientation,
49 FrameBuffer::Orientation from_orientation,
50 FrameBuffer::Orientation to_orientation,
57 FrameBuffer::Orientation from_orientation,
58 FrameBuffer::Orientation to_orientation,
64 bool RequireDimensionSwap(FrameBuffer::Orientation from_orientation,
65 FrameBuffer::Orientation to_orientation);
79 OrientParams GetOrientParams(FrameBuffer::Orientation from_orientation,
80 FrameBuffer::Orientation to_orientation);
[all …]
Dframe_buffer_common_utils.h109 FrameBuffer::Orientation orientation = FrameBuffer::Orientation::kTopLeft,
115 FrameBuffer::Orientation orientation = FrameBuffer::Orientation::kTopLeft,
121 FrameBuffer::Orientation orientation = FrameBuffer::Orientation::kTopLeft,
129 FrameBuffer::Orientation orientation = FrameBuffer::Orientation::kTopLeft,
136 FrameBuffer::Orientation orientation = FrameBuffer::Orientation::kTopLeft,
Dframe_buffer_utils.cc47 static int GetOrientationIndex(FrameBuffer::Orientation orientation) { in GetOrientationIndex()
175 FrameBuffer::Orientation from_orientation, in OrientBoundingBox()
176 FrameBuffer::Orientation to_orientation, in OrientBoundingBox()
203 FrameBuffer::Orientation from_orientation, in OrientAndDenormalizeBoundingBox()
204 FrameBuffer::Orientation to_orientation, in OrientAndDenormalizeBoundingBox()
218 FrameBuffer::Orientation from_orientation, in OrientCoordinates()
219 FrameBuffer::Orientation to_orientation, in OrientCoordinates()
263 OrientParams GetOrientParams(FrameBuffer::Orientation from_orientation, in GetOrientParams()
264 FrameBuffer::Orientation to_orientation) { in GetOrientParams()
295 bool RequireDimensionSwap(FrameBuffer::Orientation from_orientation, in RequireDimensionSwap()
[all …]
Dframe_buffer_common_utils.cc39 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromNV12RawBuffer()
50 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromNV21RawBuffer()
328 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromRgbaRawBuffer()
340 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromRgbRawBuffer()
351 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromGrayRawBuffer()
364 FrameBuffer::Orientation orientation, const absl::Time timestamp) { in CreateFromYuvRawBuffer()
387 FrameBuffer::Orientation orientation, absl::Time timestamp) { in CreateFromRawBuffer()
/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/task/core/vision/
DImageProcessingOptions.java55 public enum Orientation { enum in ImageProcessingOptions
67 Orientation(int value) { in Orientation() method in ImageProcessingOptions.Orientation
77 private static final Orientation DEFAULT_ORIENTATION = Orientation.TOP_LEFT;
81 public abstract Orientation getOrientation(); in getOrientation()
106 public abstract Builder setOrientation(Orientation orientation); in setOrientation()
/external/libcups/filter/
Dcommon.c22 int Orientation = 0, /* 0 = portrait, 1 = landscape, etc. */ variable
83 Orientation = 1; in SetCommonOptions()
85 Orientation = 3; in SetCommonOptions()
99 Orientation = atoi(val) - 3; in SetCommonOptions()
100 if (Orientation >= 2) in SetCommonOptions()
101 Orientation ^= 1; in SetCommonOptions()
106 switch (Orientation & 3) in SetCommonOptions()
125 switch (Orientation & 3) in SetCommonOptions()
144 switch (Orientation & 3) in SetCommonOptions()
163 switch (Orientation & 3) in SetCommonOptions()
[all …]
Dpstops.c695 if (orient != Orientation) in copy_comments()
701 Orientation = (4 - Orientation + orient) & 3; in copy_comments()
703 Orientation = orient; in copy_comments()
1161 WriteLabels(Orientation); in copy_non_dsc()
1199 WriteLabels(Orientation); in copy_non_dsc()
1352 else if (doc->number_up == 1 && !doc->fit_to_page && Orientation) in copy_page()
1359 fprintf(stderr, "DEBUG: Orientation = %d\n", Orientation); in copy_page()
1366 switch (Orientation) in copy_page()
1990 if (Orientation & 1) in do_setup()
2082 write_labels(doc, Orientation); in end_nup()
[all …]
Dcommon.h33 extern int Orientation, /* 0 = portrait, 1 = landscape, etc. */
/external/tflite-support/tensorflow_lite_support/cc/task/vision/core/
Dframe_buffer.h109 enum class Orientation { enum
164 Orientation orientation, in Create()
175 Orientation orientation, in Create()
187 Orientation orientation) { in Create()
198 Orientation orientation) { in Create()
215 Format format, Orientation orientation, absl::Time timestamp) in FrameBuffer()
228 Orientation orientation, absl::Time timestamp) in FrameBuffer()
278 const Orientation orientation() const { return orientation_; } in orientation()
288 Orientation orientation_;
Dbase_vision_task_api.h164 FrameBuffer::Orientation::kTopLeft); in Preprocess()
255 if (frame_buffer.orientation() != FrameBuffer::Orientation::kTopLeft || in IsImagePreprocessingNeeded()
/external/rust/pica/static/src/components/
DOrientation.js19 export class Orientation extends LitElement { class
136 customElements.define("pika-orientation", Orientation);
/external/tflite-support/tensorflow_lite_support/cc/task/vision/proto/
Ddetections.proto30 // of the underlying `frame_buffer` data before any `Orientation` flag gets
35 // `Orientation` flag taken into account according to the EXIF specification
39 // For example, if the input `frame_buffer` has its `Orientation` flag set to
Dsegmentations.proto49 // account the `Orientation` flag of the input FrameBuffer,
59 // be displayed *with* the `Orientation` flag taken into account (according to
/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Dplot_base.h84 enum Orientation { kHorizontal, kVertical }; in RTC_POP_IGNORING_WUNDEF() enum
89 IntervalSeries::Orientation orientation) in RTC_POP_IGNORING_WUNDEF()
94 Orientation orientation; in RTC_POP_IGNORING_WUNDEF()
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dmatrix_decompose.inl30 …(tmat4x4<T, P> const & ModelMatrix, tvec3<T, P> & Scale, tquat<T, P> & Orientation, tvec3<T, P> & … argument
187 Orientation.x = x;
188 Orientation.y = y;
189 Orientation.z = z;
190 Orientation.w = w;
/external/tflite-support/tensorflow_lite_support/cc/task/vision/
Dimage_segmenter.cc332 FrameBuffer::Orientation tensor_orientation = frame_buffer.orientation(); in Postprocess()
338 FrameBuffer::Orientation mask_orientation = in Postprocess()
339 FrameBuffer::Orientation::kTopLeft; in Postprocess()
344 FrameBuffer::Orientation::kTopLeft)) { in Postprocess()
/external/libcups/cups/
Draster.h267 cups_orient_t Orientation; /* Orientation value (@link cups_orient_t@) */ member
316 cups_orient_t Orientation; /* Orientation value (@link cups_orient_t@) */ member
Dtestraster.c633 if (header->Orientation != expected->Orientation) in print_changes()
634 printf(" Orientation %d, expected %d\n", header->Orientation, in print_changes()
635 expected->Orientation); in print_changes()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_medium.cpp19 {XFA_Attribute::Orientation, XFA_AttributeType::Enum,
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Deventhistory.h27 QVariant headerData(int section, Qt::Orientation orientation,
Deventhistory.cpp47 QVariant EventListModel::headerData(int section, Qt::Orientation orientation, in headerData()
/external/pdfium/xfa/fxfa/layout/
Dcxfa_viewlayoutitem.cpp52 if (pMedium->JSObject()->GetEnum(XFA_Attribute::Orientation) == in GetPageSize()

1234