pixels_to_image Subroutine

private impure subroutine pixels_to_image(this, file_name, image_name)

Type Bound

pixel

Arguments

Type IntentOptional Attributes Name
class(pixel), intent(inout) :: this
character(len=*), intent(in) :: file_name
character(len=*), intent(in) :: image_name

Called by

proc~~pixels_to_image~~CalledByGraph proc~pixels_to_image forsvd::pixel%pixels_to_image program~test5 test5 program~test5->proc~pixels_to_image

Source Code

   impure subroutine pixels_to_image(this, file_name, image_name)
      class(pixel), intent(inout) :: this
      character(*), intent(in)    :: file_name
      character(*), intent(in)    :: image_name
      integer :: i, nunit

      call execute_command_line('python pixel/pixels_to_image.py')

   end subroutine pixels_to_image