BREAKING NEWS
LATEST POSTS
-
Sample an image and output the information into text through After Effects
blogs.adobe.com/creativecloud/color-sampler-using-sampleimag/?segment=dva
“Get a readout of color values for one or more points that would update as you tweaked color correction settings.
This through an expression using the sampleImage method.
The idea is simple: Have a text layer with its Source Text property tied to the output from sampleImage, with the input to sampleImage being a point control that you can drag someplace and then just leave it while you fiddle with your colors.
On the layer that you want to measure, add a Point Control effect (one of the Expression Control effects). You can place the Point Control effect’s crosshair (effect control point) wherever you want.
Create a new text layer above the layer that you want to measure, and add this expression to the Source Text property:
targetLayer = thisComp.layer(thisLayer.index+1);
samplePoint = targetLayer.effect(“Point Control”)(“Point”);
sampleRadius = [1,1];
sampledColor_8bpc = 255 * targetLayer.sampleImage(samplePoint, sampleRadius);
R = Math.round(sampledColor_8bpc[0]);
G = Math.round(sampledColor_8bpc[1]);
B = Math.round(sampledColor_8bpc[2]);
A = Math.round(sampledColor_8bpc[3]);
outputString = ” R: ” +R+ “r G: ” +G+ “r B: ” +B+ “r A: ” +AThis will create a text layer that reports 8-bpc RGBA values for the point under the crosshair for the Point Control effect.
If you’re using an adjustment layer for your color correction, the adjustment layer is the layer that you’ll want to measure.
You can obviously get a lot fancier with this, but this should be enough to get you started.”
-
21st Century Fox and Disney Shareholders Approve Historic Merger
www.awn.com/news/21st-century-fox-and-disney-shareholders-approve-historic-merger
Disney’s $71 billion cash and stock bid is approved by stockholders of both companies along with agreement to spin-off the new ‘Fox.’
-
Looking Glass Holographic Display
https://docs.lookingglassfactory.com/making-holograms/making-great-holograms
https://www.kickstarter.com/projects/lookingglass/the-looking-glass-a-holographic-display-for-3d-cre?ref=dve2p9&utm_campaign=launch_day&utm_medium=social&utm_source=brad
Iphone Portrait
https://lookingglassfactory.com/tutorial/portrait-mode-photoslookingglassfactory.comUnity tutorial
https://learn.lookingglassfactory.com/tutorials/getting-started-with-unity/Unity and DepthKit
Aquariums
https://lookingglassfactory.com/holograms/holo-quarium
FEATURED POSTS
-
ByteDance OmniHuman-1
https://omnihuman-lab.github.io
They propose an end-to-end multimodality-conditioned human video generation framework named OmniHuman, which can generate human videos based on a single human image and motion signals (e.g., audio only, video only, or a combination of audio and video). In OmniHuman, we introduce a multimodality motion conditioning mixed training strategy, allowing the model to benefit from data scaling up of mixed conditioning. This overcomes the issue that previous end-to-end approaches faced due to the scarcity of high-quality data. OmniHuman significantly outperforms existing methods, generating extremely realistic human videos based on weak signal inputs, especially audio. It supports image inputs of any aspect ratio, whether they are portraits, half-body, or full-body images, delivering more lifelike and high-quality results across various scenarios.