Skip to content

Commit

Permalink
Add newly added functions to public API.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 534745813
  • Loading branch information
pabloduque0 authored and PIXDev committed May 24, 2023
1 parent 86521e4 commit 0ad22ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dm_pix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
adjust_hue = augment.adjust_hue
adjust_saturation = augment.adjust_saturation
affine_transform = augment.affine_transform
center_crop = augment.center_crop
elastic_deformation = augment.elastic_deformation
flip_left_right = augment.flip_left_right
flip_up_down = augment.flip_up_down
gaussian_blur = augment.gaussian_blur
pad_to_size = augment.pad_to_size
random_brightness = augment.random_brightness
random_contrast = augment.random_contrast
random_crop = augment.random_crop
Expand All @@ -41,6 +43,7 @@
random_gamma = augment.random_gamma
random_hue = augment.random_hue
random_saturation = augment.random_saturation
resize_with_crop_or_pad = augment.resize_with_crop_or_pad
rotate = augment.rotate
rot90 = augment.rot90
solarize = augment.solarize
Expand Down Expand Up @@ -81,6 +84,7 @@
"adjust_hue",
"adjust_saturation",
"affine_transform",
"center_crop",
"depth_to_space",
"elastic_deformation",
"extract_patches",
Expand All @@ -93,6 +97,7 @@
"hsv_to_rgb",
"mae",
"mse",
"pad_to_size",
"psnr",
"random_brightness",
"random_contrast",
Expand All @@ -102,6 +107,7 @@
"random_gamma",
"random_hue",
"random_saturation",
"resize_with_crop_or_pad",
"rotate",
"rgb_to_hsl",
"rgb_to_hsv",
Expand Down

0 comments on commit 0ad22ca

Please sign in to comment.