Exemple #1
0
//Depth
void computeDepth(Neuron *n)
{
	n->setFunc(7);
	Feature* features = new Feature(n);
	cout<<"Depth: "<<features->getMin()<<"\n";
	//myfile<<"Depth: "<<featues->getMin()<<"\n";
	features->~Feature();
}
Exemple #2
0
//Height
void computeHeight(Neuron *n)
{
	n->setFunc(6);
	Feature* features = new Feature(n);
	cout<<"Height: "<<features->getMin()<<"\n";
	//myfile<<"Height: "<<featues->getMin()<<"\n";
	features->~Feature();

}