IMvision12 commited on
Commit
f787239
·
verified ·
1 Parent(s): 5b69a67

docs: load image processor via from_weights

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -42,7 +42,7 @@ from PIL import Image
42
  from kerasformers.models.depth_anything_v1 import DepthAnythingV1DepthEstimation, DepthAnythingV1ImageProcessor
43
 
44
  model = DepthAnythingV1DepthEstimation.from_weights("kerasformers/depth_anything_small")
45
- processor = DepthAnythingV1ImageProcessor()
46
 
47
  image = Image.open("your_image.jpg").convert("RGB")
48
  output = model(processor(image)["pixel_values"], training=False)
 
42
  from kerasformers.models.depth_anything_v1 import DepthAnythingV1DepthEstimation, DepthAnythingV1ImageProcessor
43
 
44
  model = DepthAnythingV1DepthEstimation.from_weights("kerasformers/depth_anything_small")
45
+ processor = DepthAnythingV1ImageProcessor.from_weights("kerasformers/depth_anything_small")
46
 
47
  image = Image.open("your_image.jpg").convert("RGB")
48
  output = model(processor(image)["pixel_values"], training=False)