BREAKING NEWS
LATEST POSTS
-
Lightfield capture to LookingGlass “Quilt” image
Quilts are an image standard that Looking Glass uses to produce 3D experiences. This standard is used to describe both still and moving images (pictures and videos).
The main benefit of the quilt format is that it can work for both images and videos! Quilts allow for an efficient way to store frame by frame data as .mp4, .webm or other common media formats. They’re also compact. for example, the above quilt was compressed to be under 1MB of data!
Each tile in the quilt is a conventional 2D image of a scene. The bottom-left tile of the quilt (view 0) is the leftmost view of the scene, and the top-right tile is the rightmost, like so:
-
Python3 coding differences
https://cv-tricks.com/how-to/developer-guide-to-key-differences-between-python-2-and-3/
-
- Print Statement
- input() function (returns a string in 3.x; under 2.x use raw_input instead)
- Unicode Literals
- Exceptions
- Rounding
- List comprehension
- Generators
- string.replace is not available anymore
- reload() should be replaced with import importlib; importlib.reload()
- As of Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier, dictionaries are unordered but insertion ordered.
-
-
AI Dresses by MaryAnna
https://www.linkedin.com/feed/update/urn:li:activity:7015985798567067648
Created by Discord user: @MaryAnna
-
Mutable vs Immutable Objects in Python
https://medium.com/@meghamohan/mutable-and-immutable-side-of-python-c2145cf72747
Everything in Python is an object.
Since everything in Python is an Object, every variable holds an object instance. When an object is initiated, it is assigned a unique object id. Its type is defined at runtime and once set can never change, however its state can be changed if it is mutable.Simply put, a mutable object can be changed after it is created, and an immutable object can’t.
Mutable objects:
list, dict, set, byte arrayImmutable objects:
int, float, complex, string, tuple, frozen set [note: immutable version of set], bytes -
How To Create Amazing Cityscapes In Blender
Japanese town generator
https://80.lv/articles/japanese-town-generator-set-up-in-blender/
FEATURED POSTS
-
AI and the Law – Why The New York Times might win its copyright lawsuit against OpenAI
Daniel Jeffries wrote:
“Trying to get everyone to license training data is not going to work because that’s not what copyright is about,” Jeffries wrote. “Copyright law is about preventing people from producing exact copies or near exact copies of content and posting it for commercial gain. Period. Anyone who tells you otherwise is lying or simply does not understand how copyright works.”
The AI community is full of people who understand how models work and what they’re capable of, and who are working to improve their systems so that the outputs aren’t full of regurgitated inputs. Google won the Google Books case because it could explain both of these persuasively to judges. But the history of technology law is littered with the remains of companies that were less successful in getting judges to see things their way.
-
“Reality” is constructed by your brain. Here’s what that means, and why it matters.
“Fix your gaze on the black dot on the left side of this image. But wait! Finish reading this paragraph first. As you gaze at the left dot, try to answer this question: In what direction is the object on the right moving? Is it drifting diagonally, or is it moving up and down?”
What color are these strawberries?
Are A and B the same gray?
-
How to paint a boardgame miniatures
Steps:
- soap wash cleaning
- primer
- base-coat layer (black/white)
- detailing
- washing aka shade (could be done after highlighting)
- highlights aka dry brushing (could be done after washing)
- varnish (gloss/satin/matte)