Example #1
0
 def __init__(self,
              name,
              frame_id,
              new_width=None,
              new_height=None,
              x=None,
              y=None,
              rect_width=None,
              rect_height=None,
              rotate_flip_method=None,
              save_other_frames=None,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.frame_id = frame_id
     self.new_width = new_width
     self.new_height = new_height
     self.x = x
     self.y = y
     self.rect_width = rect_width
     self.rect_height = rect_height
     self.rotate_flip_method = rotate_flip_method
     self.save_other_frames = save_other_frames
     self.folder = folder
     self.storage = storage
Example #2
0
 def __init__(self, name, method, format=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.method = method
     self.format = format
     self.folder = folder
     self.storage = storage
Example #3
0
 def __init__(self, image_data, method, format=None, out_path=None, storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.method = method
     self.format = format
     self.out_path = out_path
     self.storage = storage
 def __init__(self,
              image_data,
              frame_id,
              new_width=None,
              new_height=None,
              x=None,
              y=None,
              rect_width=None,
              rect_height=None,
              rotate_flip_method=None,
              save_other_frames=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.frame_id = frame_id
     self.new_width = new_width
     self.new_height = new_height
     self.x = x
     self.y = y
     self.rect_width = rect_width
     self.rect_height = rect_height
     self.rotate_flip_method = rotate_flip_method
     self.save_other_frames = save_other_frames
     self.out_path = out_path
     self.storage = storage
 def __init__(self,
              image_data,
              color_type=None,
              text_as_shapes=None,
              scale_x=None,
              scale_y=None,
              page_width=None,
              page_height=None,
              border_x=None,
              border_y=None,
              bk_color=None,
              from_scratch=None,
              out_path=None,
              storage=None,
              format=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.color_type = color_type
     self.text_as_shapes = text_as_shapes
     self.scale_x = scale_x
     self.scale_y = scale_y
     self.page_width = page_width
     self.page_height = page_height
     self.border_x = border_x
     self.border_y = border_y
     self.bk_color = bk_color
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
     self.format = format
Example #6
0
 def __init__(self, src_path, dest_path, src_storage_name=None, dest_storage_name=None, version_id=None):
     ImagingRequest.__init__(self)
     self.src_path = src_path
     self.dest_path = dest_path
     self.src_storage_name = src_storage_name
     self.dest_storage_name = dest_storage_name
     self.version_id = version_id
Example #7
0
 def __init__(self, search_context_id, image_id, image_data=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.search_context_id = search_context_id
     self.image_id = image_id
     self.image_data = image_data
     self.folder = folder
     self.storage = storage
 def __init__(self, name, comment, codec=None, from_scratch=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.comment = comment
     self.codec = codec
     self.from_scratch = from_scratch
     self.folder = folder
     self.storage = storage
 def __init__(self, image_data, comment, codec=None, from_scratch=None, out_path=None, storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.comment = comment
     self.codec = codec
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
Example #10
0
 def __init__(self, name, filter_type, filter_properties, format=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.filter_type = filter_type
     self.filter_properties = filter_properties
     self.format = format
     self.folder = folder
     self.storage = storage
 def __init__(self, name, quality=None, compression_type=None, from_scratch=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.quality = quality
     self.compression_type = compression_type
     self.from_scratch = from_scratch
     self.folder = folder
     self.storage = storage
Example #12
0
 def __init__(self, image_data, bits_per_pixel, horizontal_resolution, vertical_resolution, from_scratch=None, out_path=None, storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.bits_per_pixel = bits_per_pixel
     self.horizontal_resolution = horizontal_resolution
     self.vertical_resolution = vertical_resolution
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
 def __init__(self, search_context_id, similarity_threshold, max_count, image_data=None, image_id=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.search_context_id = search_context_id
     self.similarity_threshold = similarity_threshold
     self.max_count = max_count
     self.image_data = image_data
     self.image_id = image_id
     self.folder = folder
     self.storage = storage
Example #14
0
 def __init__(self,
              search_context_id,
              similarity_threshold,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.search_context_id = search_context_id
     self.similarity_threshold = similarity_threshold
     self.folder = folder
     self.storage = storage
 def __init__(self, name, x, y, width, height, format=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.x = x
     self.y = y
     self.width = width
     self.height = height
     self.format = format
     self.folder = folder
     self.storage = storage
Example #16
0
 def __init__(self,
              detector=None,
              matching_algorithm=None,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.detector = detector
     self.matching_algorithm = matching_algorithm
     self.folder = folder
     self.storage = storage
 def __init__(self,
              search_context_id,
              images_source,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.search_context_id = search_context_id
     self.images_source = images_source
     self.folder = folder
     self.storage = storage
 def __init__(self, name, loss_less, quality, anim_loop_count, anim_background_color, from_scratch=None, folder=None, storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.loss_less = loss_less
     self.quality = quality
     self.anim_loop_count = anim_loop_count
     self.anim_background_color = anim_background_color
     self.from_scratch = from_scratch
     self.folder = folder
     self.storage = storage
Example #19
0
 def __init__(self, image_data, background_color_index=None, color_resolution=None, has_trailer=None, interlaced=None, is_palette_sorted=None, pixel_aspect_ratio=None, from_scratch=None, out_path=None, storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.background_color_index = background_color_index
     self.color_resolution = color_resolution
     self.has_trailer = has_trailer
     self.interlaced = interlaced
     self.is_palette_sorted = is_palette_sorted
     self.pixel_aspect_ratio = pixel_aspect_ratio
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
Example #20
0
 def __init__(self, name, bk_color, page_width, page_height, border_x, border_y, from_scratch=None, folder=None, storage=None, format=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.bk_color = bk_color
     self.page_width = page_width
     self.page_height = page_height
     self.border_x = border_x
     self.border_y = border_y
     self.from_scratch = from_scratch
     self.folder = folder
     self.storage = storage
     self.format = format
 def __init__(self,
              image_data,
              resize_proportionally,
              bk_color=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.resize_proportionally = resize_proportionally
     self.bk_color = bk_color
     self.out_path = out_path
     self.storage = storage
Example #22
0
 def __init__(self,
              name,
              resize_proportionally,
              bk_color=None,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.resize_proportionally = resize_proportionally
     self.bk_color = bk_color
     self.folder = folder
     self.storage = storage
 def __init__(self, image_data, new_width, new_height, x, y, rect_width, rect_height, rotate_flip_method, format=None, out_path=None, storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.new_width = new_width
     self.new_height = new_height
     self.x = x
     self.y = y
     self.rect_width = rect_width
     self.rect_height = rect_height
     self.rotate_flip_method = rotate_flip_method
     self.format = format
     self.out_path = out_path
     self.storage = storage
Example #24
0
 def __init__(self,
              tags,
              search_context_id,
              similarity_threshold,
              max_count,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.tags = tags
     self.search_context_id = search_context_id
     self.similarity_threshold = similarity_threshold
     self.max_count = max_count
     self.folder = folder
     self.storage = storage
 def __init__(self,
              name,
              channels_count=None,
              compression_method=None,
              from_scratch=None,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.channels_count = channels_count
     self.compression_method = compression_method
     self.from_scratch = from_scratch
     self.folder = folder
     self.storage = storage
Example #26
0
 def __init__(self,
              name,
              new_width,
              new_height,
              format=None,
              folder=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.name = name
     self.new_width = new_width
     self.new_height = new_height
     self.format = format
     self.folder = folder
     self.storage = storage
 def __init__(self,
              image_data,
              quality=None,
              compression_type=None,
              from_scratch=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.quality = quality
     self.compression_type = compression_type
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
Example #28
0
 def __init__(self,
              image_data,
              channels_count=None,
              compression_method=None,
              from_scratch=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.channels_count = channels_count
     self.compression_method = compression_method
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage
 def __init__(self,
              image_data,
              new_width,
              new_height,
              format=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.new_width = new_width
     self.new_height = new_height
     self.format = format
     self.out_path = out_path
     self.storage = storage
Example #30
0
 def __init__(self,
              image_data,
              loss_less,
              quality,
              anim_loop_count,
              anim_background_color,
              from_scratch=None,
              out_path=None,
              storage=None):
     ImagingRequest.__init__(self)
     self.image_data = image_data
     self.loss_less = loss_less
     self.quality = quality
     self.anim_loop_count = anim_loop_count
     self.anim_background_color = anim_background_color
     self.from_scratch = from_scratch
     self.out_path = out_path
     self.storage = storage