Nothing
context("vision-utils")
test_that("vision_make_grid", {
images <- torch::torch_randn(c(4, 3, 16, 16))
grid <- vision_make_grid(images, num_rows = 2, padding = 0)
expect_equal(grid$size(), c(3, 32, 32))
expect_equal(as.numeric(grid$max() - grid$min()), 1, tolerance = 1e-4)
})
test_that("draw_bounding_boxes works", {
image1 <- 1 - (torch::torch_randn(c(3, 360, 360)) / 20)
image2 <- (255 - (torch::torch_randint(low = 1, high = 60, size = c(3, 360, 360))))$to(torch::torch_uint8())
x <- torch::torch_randint(low = 1, high = 160, size = c(12,1))
y <- torch::torch_randint(low = 1, high = 260, size = c(12,1))
boxes <- torch::torch_cat(c(x, y, x + runif(1, 5, 60), y + runif(1, 5, 10)), dim = 2)
expect_error(bboxed_image <- draw_bounding_boxes(image1, boxes), "uint8")
expect_no_error(bboxed_image <- draw_bounding_boxes(image2, boxes, labels = "dog"))
expect_tensor_dtype(bboxed_image, torch::torch_uint8())
expect_tensor_shape(bboxed_image, c(3, 360, 360))
expect_no_error(bboxed_image <- draw_bounding_boxes(image2, boxes, color = "black", fill = TRUE))
})
test_that("draw_bounding_boxes correctly mask a complete image", {
image <- torch::torch_randint(low = 1, high = 240, size = c(3, 360, 360))$to(torch::torch_uint8())
boxes <- torch::torch_tensor(c(0,0,360,360))$unsqueeze(1)
expect_no_error(bboxed_image <- draw_bounding_boxes(image, boxes, color = "black", fill = TRUE))
# some invisible glitch remaains
expect_lte(bboxed_image$sum() %>% as.numeric, 3000)
})
test_that("draw_segmentation_masks works", {
image <- torch::torch_randint(low = 190, high = 255, size = c(3, 360, 360))$to(torch::torch_uint8())
lower_mask <- torch::torch_tril(torch::torch_ones(c(360, 360)), diagonal = FALSE)$to(torch::torch_bool())
upper_mask <- torch::torch_triu(torch::torch_ones(c(360, 360)), diagonal = FALSE)$to(torch::torch_bool())
masks <- torch::torch_stack(c(lower_mask, upper_mask), dim = 1)
expect_no_error(masked_image <- draw_segmentation_masks(image, masks))
expect_tensor_dtype(masked_image, torch::torch_uint8())
expect_tensor_shape(masked_image, c(3, 360, 360))
colors <- c("navyblue", "orange3")
expect_no_error(masked_image <- draw_segmentation_masks(image, masks, colors = colors, alpha = 0.5))
})
test_that("draw_keypoints works", {
image <- torch::torch_randint(low = 190, high = 255, size = c(3, 360, 360))$to(torch::torch_uint8())
keypoints <- torch::torch_randint(low = 60, high = 300, size = c(4, 5, 2))
expect_no_error(keypoint_image <- draw_keypoints(image, keypoints))
expect_tensor_dtype(keypoint_image, torch::torch_uint8())
expect_tensor_shape(keypoint_image, c(3, 360, 360))
colors <- hcl.colors(n = 5)
expect_no_error(keypoint_image <- draw_keypoints(image, keypoints, colors = colors, radius = 7))
})
test_that("tensor_image_browse works", {
skip_on_cran()
skip_on_ci()
# color image
image <- (255 - (torch::torch_randint(low = 1, high = 200, size = c(3, 360, 360))))$to(torch::torch_uint8())
expect_no_error(tensor_image_browse(image))
# grayscale image
image <- (255 - (torch::torch_randint(low = 1, high = 200, size = c(1, 360, 360))))$to(torch::torch_uint8())
expect_no_error(tensor_image_browse(image))
# error cases : dtype
image_int16 <- image$to(torch::torch_int16())
expect_error(tensor_image_browse(image_int16), "dtype torch_uint8")
# error cases : shape
image <- torch::torch_randint(low = 1, high = 200, size = c(4, 3, 360, 360))$to(torch::torch_uint8())
expect_error(tensor_image_browse(image), "individual images")
image <- torch::torch_randint(low = 1, high = 200, size = c(4, 360, 360))$to(torch::torch_uint8())
expect_error(tensor_image_browse(image), "Only grayscale and RGB")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.