Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Bump kornia from 0.6.6 to 0.6.9 #111

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 26, 2022

Bumps kornia from 0.6.6 to 0.6.9.

Release notes

Sourced from kornia's releases.

v0.6.8 Experimental Nerf, Deep Edge Detection, community demos, Quaternion slerp, augmentations dispatcher, image matching and other bug fixes

Highlights

NeRF API

In this release in we include an experimental kornia.nerf submodule with a high level API that implements a vanilla Neural Radiance Field (NeRF). Read more about the roadmap of this project: kornia/kornia#1936 // contribution done by @​YanivHollander

from kornia.nerf import NerfSolver
from kornia.geomtry.camera import PinholeCamera
camera: PinholeCamera = create_one_camera(5, 9, device, dtype)
img = create_red_images_for_cameras(camera, device)
nerf_obj = NerfSolver(device=device, dtype=dtype)
num_img_rays = 15
nerf_obj.init_training(camera, 1.0, 3.0, False, img, num_img_rays, batch_size=5, num_ray_points=10, lr=1e-2)
nerf_obj.run(num_epochs=10)
img_rendered = nerf_obj.render_views(camera)[0].permute(2, 0, 1)

ezgif com-gif-maker

Improvements, docs and tutorials soon!

Edge Detection

Added kornia.contrib.EdgeDetection API that implements dexined: https://github.com/xavysp/DexiNed

import kornia as K
from kornia.contrib import EdgeDetection
edge_detection = EdgeDetector().to(device)
preprocess
img = K.image_to_tensor(frame, keepdim=False).to(device)
img = K.color.bgr_to_rgb(img.float())
detect !
with torch.no_grad():
edges = edge_detection(img)
img_vis = K.tensor_to_image(edges.byte())

amiga_edge

Image matching bugfixes:

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [kornia](https://github.com/kornia/kornia) from 0.6.6 to 0.6.9.
- [Release notes](https://github.com/kornia/kornia/releases)
- [Changelog](https://github.com/kornia/kornia/blob/master/CHANGELOG.md)
- [Commits](kornia/kornia@v0.6.6...v0.6.9)

---
updated-dependencies:
- dependency-name: kornia
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies 🔁 Pull requests that update a dependency file python 🐍 Pull requests that update Python code labels Dec 26, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 20, 2023

Superseded by #124.

@dependabot dependabot bot closed this Feb 20, 2023
@dependabot dependabot bot deleted the dependabot/pip/develop/kornia-0.6.9 branch February 20, 2023 19:59
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies 🔁 Pull requests that update a dependency file python 🐍 Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant