void ns_out_frame_count(ns_image_standard & im, const unsigned long number_of_frames_used_to_find_stationary_objects, const unsigned long frame_count){
	ns_xml_simple_writer xml;
	xml.add_header();
	xml.add_tag("frame_count",frame_count);
	xml.add_tag("number_of_frames_used_to_find_stationary_objects",number_of_frames_used_to_find_stationary_objects);
	xml.add_footer();
	im.set_description(xml.result());
	/*
	ns_32_bit time_points_l = (ns_32_bit)frame_count;
	if ((ns_32_bit)frame_count > ((ns_32_bit)0)-1)
		frame_count = ((ns_32_bit)0)-1;
	ns_8_bit * tp = reinterpret_cast<ns_8_bit *>(&time_points_l);
	//place number of frames used to calculate heat map in bitmap
	im[0][0] = tp[0];
	im[0][1] = tp[1];
	im[0][2] = tp[2];
	im[0][3] = tp[3];
	im[0][4] = tp[0];
	im[0][5] = tp[1];*/
}