ImfDeepImageState.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2013, Industrial Light & Magic, a division of Lucas
  4. // Digital Ltd. LLC
  5. //
  6. // All rights reserved.
  7. //
  8. // Redistribution and use in source and binary forms, with or without
  9. // modification, are permitted provided that the following conditions are
  10. // met:
  11. // * Redistributions of source code must retain the above copyright
  12. // notice, this list of conditions and the following disclaimer.
  13. // * Redistributions in binary form must reproduce the above
  14. // copyright notice, this list of conditions and the following disclaimer
  15. // in the documentation and/or other materials provided with the
  16. // distribution.
  17. // * Neither the name of Industrial Light & Magic nor the names of
  18. // its contributors may be used to endorse or promote products derived
  19. // from this software without specific prior written permission.
  20. //
  21. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  25. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  27. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  28. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  29. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  30. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. //
  33. ///////////////////////////////////////////////////////////////////////////
  34. #ifndef INCLUDED_IMF_DEEPIMAGESTATE_H
  35. #define INCLUDED_IMF_DEEPIMAGESTATE_H
  36. //-----------------------------------------------------------------------------
  37. //
  38. // enum DeepImageState -- describes how orderly the pixel data
  39. // in a deep image are
  40. //
  41. // The samples in a deep image pixel may be sorted according to
  42. // depth, and the sample depths or depth ranges may or may not
  43. // overlap each other. A pixel is
  44. //
  45. // - SORTED if for every i and j with i < j
  46. //
  47. // (Z[i] < Z[j]) || (Z[i] == Z[j] && ZBack[i] < ZBack[j]),
  48. //
  49. // - NON_OVERLAPPING if for every i and j with i != j
  50. //
  51. // (Z[i] < Z[j] && ZBack[i] <= Z[j]) ||
  52. // (Z[j] < Z[i] && ZBack[j] <= Z[i]) ||
  53. // (Z[i] == Z[j] && ZBack[i] <= Z[i] & ZBack[j] > Z[j]) ||
  54. // (Z[i] == Z[j] && ZBack[j] <= Z[j] & ZBack[i] > Z[i]),
  55. //
  56. // - TIDY if it is SORTED and NON_OVERLAPPING,
  57. //
  58. // - MESSY if it is neither SORTED nor NON_OVERLAPPING.
  59. //
  60. // A deep image is
  61. //
  62. // - MESSY if at least one of its pixels is MESSY,
  63. // - SORTED if all of its pixels are SORTED,
  64. // - NON_OVERLAPPING if all of its pixels are NON_OVERLAPPING,
  65. // - TIDY if all of its pixels are TIDY.
  66. //
  67. // Note: the rather complicated definition of NON_OVERLAPPING prohibits
  68. // overlapping volume samples, coincident point samples and point samples
  69. // in the middle of a volume sample, but it does allow point samples at
  70. // the front or back of a volume sample.
  71. //
  72. //-----------------------------------------------------------------------------
  73. #include "ImfNamespace.h"
  74. #include "ImfExport.h"
  75. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
  76. enum DeepImageState
  77. {
  78. DIS_MESSY = 0,
  79. DIS_SORTED = 1,
  80. DIS_NON_OVERLAPPING = 2,
  81. DIS_TIDY = 3,
  82. DIS_NUMSTATES // Number of different image states
  83. };
  84. OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
  85. #endif