Instructions to use onkarsus13/ConFiDeNet-Large-VQ-32 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use onkarsus13/ConFiDeNet-Large-VQ-32 with Transformers:
# Load model directly from transformers import AutoImageProcessor, ConFiDeNetForDepthEstimation processor = AutoImageProcessor.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32") model = ConFiDeNetForDepthEstimation.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32") - Notebooks
- Google Colab
- Kaggle
Quick Links
This is the Offical weights of ConFiDeNet
Installation
pip3 install git+https://github.com/Onkarsus13/transformers.git@confidenet
from PIL import Image
import torch
from transformers import ConFiDeNetForDepthEstimation, ConFiDeNetImageProcessor
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
image = Image.open("<Image Path>").convert("RGB")
print(image.size)
# image.save("image.jpg")
image_processor = ConFiDeNetImageProcessor.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32")
model = ConFiDeNetForDepthEstimation.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32").to(device)
inputs = image_processor(images=image, return_tensors="pt").to(device)
with torch.no_grad():
outputs = model(**inputs)
post_processed_output = image_processor.post_process_depth_estimation(
outputs, target_sizes=[(image.height, image.width)],
)
depth = post_processed_output[0]["predicted_depth_uint16"].detach().cpu().numpy()
depth = Image.fromarray(depth, mode="I;16")
depth.save("depth.png")
- Downloads last month
- 8
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for onkarsus13/ConFiDeNet-Large-VQ-32
Base model
facebook/dinov2-large
# Load model directly from transformers import AutoImageProcessor, ConFiDeNetForDepthEstimation processor = AutoImageProcessor.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32") model = ConFiDeNetForDepthEstimation.from_pretrained("onkarsus13/ConFiDeNet-Large-VQ-32")