Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - alebul

Pages: [1]
1
General CG Discussion / Python code. Rendertime
« on: 2015-05-25, 19:16:39 »
Hello. Sorry for my english and my python code style. This is code writen just for fun. Idea is simple. We have some render output low resulution. And we want know without rendering how long rendertime with high resolution. Get quantity of pixels from lowres renderoutput and rendertime. Divide rendertime on quantity of pixels, gettin some number, some coefficient. And multiply this coefficient on number of pixels renderoutput what we want, and we get the rendertime without rendering high resolution. Python code:
Code: [Select]
def render_coeff(width,hight,time):
        return float(time/(width*hight))
def render_time(width,hight,coeff):
        return float((width*hight)*coeff)
   
ri = input("enter rendered image width, hight, time: ")
l = ri.split(',')
coeff = render_coeff(int(l[0]),int(l[1]),int(l[2]))
 
ri2 = input("enter width and hight for final image")
l2 = ri2.split(',')
print("rendertime for this image is ", render_time(int(l2[0]), int(l2[1]), coeff), " seconds")

2
[Max] I need help! / Re: Troubleshootine render times
« on: 2015-05-11, 04:19:07 »
Can you show screenshot of material setting?

3
[Max] I need help! / Re: Slow render with carpet
« on: 2015-05-09, 20:56:42 »
Thanks for answers, I think reduce geometri or other model help me.

4
[Max] I need help! / Re: Slow render with carpet
« on: 2015-05-09, 05:26:12 »
This is scene without carpet.

with carpet

this is object for instances

and this is task manager

5
[Max] I need help! / Slow render with carpet
« on: 2015-05-08, 05:57:23 »
Hello. How to speed up render time in scene with carpet? Carpet created by Cscatter. In one object for instances - 7472 polys. Scatter count - 100000. Without carpet render time about 3 hours, with carpet - 7 hours. Is only one way - decrease geometry of carpet?

6
[Max] General Discussion / Re: Corona Alpha4 Benchmark scene
« on: 2014-02-02, 07:19:09 »
Hello. When I run !runtime.bat it crashed and in windows log error in Corona.exe and Corona_Release.dll. Vcredist was installed. OS - Windows 7 SP1. On my friend PC with Windows 8.1 it's work. I reinstalled my OS but error not gone.

Pages: [1]